All public logs

Jump to navigation Jump to search

Combined display of all available logs of UVOO Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 18:44, 1 April 2024 Busk talk contribs created page Nginx access gateway (Created page with "``` error_log /dev/stdout info; # error_log stderr; worker_processes 1; daemon off; pid /tmp/nginx.pid; events { } http { access_log /dev/stdout; upstream backend_serv...")
  • 00:07, 1 April 2024 Busk talk contribs created page Sqlite sync (Created page with "``` package main import ( "database/sql" "fmt" _ "github.com/mattn/go-sqlite3" ) func main() { // Open source SQLite database sourceDB, err := sql.Open("...")
  • 14:05, 31 March 2024 Busk talk contribs created page Blackbox exporter feature wish list (Created page with "https://github.com/prometheus/blackbox_exporter/pull/1222 discussed in https://github.com/prometheus/blackbox_exporter/pull/1098")
  • 23:16, 30 March 2024 Busk talk contribs created page Git signoff (Created page with "``` In your local branch, run: git rebase HEAD~2 --signoff Force push your changes to overwrite the branch: git push --force-with-lease origin my-branch ```")
  • 16:46, 30 March 2024 Busk talk contribs created page Git sign commits (Created page with "# Error ``` error: gpg failed to sign the data fatal: failed to write commit object ``` ## Do ``` export GPG_TTY=$(tty) ```")
  • 09:00, 30 March 2024 Busk talk contribs created page Blackbox exporter customized (Created page with "https://learn.microsoft.com/en-us/azure/templates/microsoft.insights/webtests")
  • 16:39, 29 March 2024 Busk talk contribs created page Visual studio code (Created page with "# Settings -> Font ``` Consolas, 'Courier New', monospace -> Cascadia Mono ```")
  • 21:31, 26 March 2024 Busk talk contribs created page Blackbox exporter header host (Created page with "``` To pass an HTTPS IP address and a Host header value dynamically as targets in Blackbox Exporter configuration, you can use the http_custom_headers module with Prometheus r...")
  • 14:58, 25 March 2024 Busk talk contribs created page Microceph remove mon (Created page with "# Remove ``` systemctl stop snap.microceph.mon.service systemctl disable snap.microceph.mon.service ceph mon remove microceph5 ```")
  • 02:10, 25 March 2024 Busk talk contribs created page Ceph Intro (Created page with "Monitors: A Ceph Monitor (ceph-mon) maintains maps of the cluster state, including the monitor map, manager map, the OSD map, the MDS map, and the CRUSH map. These maps are cr...")
  • 20:29, 24 March 2024 Busk talk contribs created page Lxd remove disk (Created page with "# remove disk ``` lxc config device rm microceph3 osd1 ```")
  • 20:11, 24 March 2024 Busk talk contribs created page Microceph remove (Created page with "``` ceph osd status sudo microceph.ceph osd destroy 2 ceph osd purge osd.2 --yes-i-really-mean-it ``` # Removing node WIP ``` ceph osd dump ceph osd out osd.2 ceph osd crush...")
  • 17:29, 24 March 2024 Busk talk contribs created page Ceph crush algorithm (Created page with "https://docs.ceph.com/en/quincy/rados/operations/crush-map/")
  • 23:32, 23 March 2024 Busk talk contribs created page Microceph multi-node (Created page with "https://canonical-microceph.readthedocs-hosted.com/en/latest/tutorial/multi-node/")
  • 23:00, 23 March 2024 Busk talk contribs created page Microceph upgrade (Created page with "https://canonical-microceph.readthedocs-hosted.com/en/latest/how-to/reef-upgrade/")
  • 22:50, 23 March 2024 Busk talk contribs created page Ceph new (Created page with "``` ceph osd status ceph osd purge osd.3 --yes-i-really-mean-it ``` # Purge vs Destroy In Ceph, both ceph osd destroy and ceph osd purge commands are used to remove OSDs (O...")
  • 14:43, 23 March 2024 Busk talk contribs created page Go echo multiple ports (Created page with "``` import socket import threading def handle_client(client_socket): while True: data = client_socket.recv(1024) if not data: break cl...")
  • 22:45, 22 March 2024 Busk talk contribs created page Curl new (Created page with "``` curl -s -o /dev/null -w "dns:%{time_namelookup}, redir:%{time_redirect}, tcp:%{time_connect}\n" https://yahoo.com ```")
  • 04:19, 18 March 2024 Busk talk contribs created page Pgp postgres (Created page with "``` -- Assuming you have a public key named 'my_public_key' already imported into your keyring -- Encrypting a message SELECT pgp_pub_encrypt( 'Your secret message here',...")
  • 03:01, 18 March 2024 Busk talk contribs created page Openssl new (Created page with "https://serverfault.com/questions/670725/is-it-possible-to-restrict-the-use-of-a-root-certificate-to-a-domain")
  • 15:03, 16 March 2024 Busk talk contribs created page Cfssl new (Created page with "https://blog.laisky.com/p/cfssl/?lang=en")
  • 19:44, 15 March 2024 Busk talk contribs created page Gopki (Created page with "package pki import ( "crypto" "crypto/rand" "crypto/rsa" "crypto/sha256" "crypto/x509" "encoding/pem" "errors" ) // GenerateKeyPair generates a n...")
  • 16:22, 10 March 2024 Busk talk contribs created page Openssl common commands (Created page with "https://www.sslshopper.com/article-most-common-openssl-commands.html ``` General OpenSSL Commands These commands allow you to generate CSRs, Certificates, Private Keys and do...")
  • 03:10, 9 March 2024 Busk talk contribs created page Terraform bash snippets (Created page with "``` sed -i -e '/backend "azurerm"/,/}/ { /resource_group_name/ { s/resource_group_name = .*/resource_group_name = "new-resource-group"/ } /key/!s/}/ resource_group_...")
  • 23:28, 8 March 2024 Busk talk contribs created page Dns registration in windows (Created page with "``` $dnsRegistrationInterval = Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' -Name 'RegistrationRefreshInterval' Write-Host "Current DNS Re...")
  • 20:48, 8 March 2024 Busk talk contribs created page Health Check for Application Service (Created page with "https://learn.microsoft.com/en-us/azure/app-service/monitor-instances-health-check?tabs=dotnet https://learn.microsoft.com/en-us/previous-versions/azure/azure-monitor/app/mon...")
  • 16:35, 8 March 2024 Busk talk contribs created page Blackbox exporter form login (Created page with "``` modules: http_2xx: prober: http timeout: 5s http: method: POST headers: Content-Type: 'application/x-www-form-urlencoded' params:...")
  • 21:56, 7 March 2024 Busk talk contribs moved page Aks loki to Loki AKS Example without leaving a redirect
  • 21:54, 7 March 2024 Busk talk contribs created page Aks loki (Created page with "https://techcommunity.microsoft.com/t5/apps-on-azure-blog/getting-started-with-azure-kubernetes-service-and-loki/ba-p/3406880")
  • 01:53, 7 March 2024 Busk talk contribs created page Helm show values (Created page with "helm show values")
  • 23:08, 6 March 2024 Busk talk contribs created page Jinja use custom block markers (Created page with "``` from jinja2 import Environment, FileSystemLoader # Create a Jinja environment with custom variable markers custom_env = Environment(loader=FileSystemLoader('your_template...")
  • 01:07, 6 March 2024 Busk talk contribs created page F5 Grafana (Created page with "https://grafana.com/docs/grafana-cloud/monitor-infrastructure/integrations/integration-reference/integration-f5-bigip/")
  • 20:38, 3 March 2024 Busk talk contribs created page Promtail issues (Created page with "# Grafana Loki Basic Auth ``` server: log_level: {{ .Values.config.logLevel }} http_listen_port: {{ .Values.config.serverPort }} clients: - url: {{...")
  • 19:29, 3 March 2024 Busk talk contribs created page Grafana agent (Created page with "# Add ``` #!/bin/bash set -eu sudo mkdir -p /etc/apt/keyrings/ wget -q -O - https://apt.grafana.com/gpg.key | gpg --dearmor | sudo tee /etc/apt/keyrings/grafana.gpg > /dev/n...")
  • 21:07, 2 March 2024 Busk talk contribs created page Mimir (Created page with "https://grafana.com/docs/mimir/latest/configure/configure-otel-collector/ https://grafana.com/docs/mimir/latest/send/ https://grafana.com/docs/mimir/latest/references/http-api/")
  • 20:25, 2 March 2024 Busk talk contribs created page Promql (Created page with "``` node_uname_info{nodename="my-agent-sandbox"} ```")
  • 17:07, 2 March 2024 Busk talk contribs created page Mimir vs thanos (Created page with "https://www.reddit.com/r/ThanosInsights/s/PPwj0G3lNl")
  • 15:40, 2 March 2024 Busk talk contribs created page Grafana Kubernetes Monitoring (Created page with "https://akyriako.medium.com/kubernetes-logging-with-grafana-loki-promtail-in-under-10-minutes-d2847d526f9e")
  • 21:59, 1 March 2024 Busk talk contribs created page F5 clear stats (Created page with "``` for i in $(tmsh -q -c "list auth partition" | grep auth | awk '{print $3}'); do echo $i; tmsh -q -c "cd /$i; reset-stats ltm rule; reset-stats ltm virtual; reset-stats ltm...")
  • 09:26, 1 March 2024 Busk talk contribs created page Time series database comparison (Created page with "https://medium.com/griddb/time-series-database-comparison-aa83c5e257d2")
  • 19:37, 29 February 2024 Busk talk contribs created page Prometheus backup (Created page with "https://devopstales.github.io/kubernetes/backup-and-retore-prometheus/")
  • 03:42, 29 February 2024 Busk talk contribs created page Pvc resize scaleset (Created page with "https://serverfault.com/questions/955293/how-to-increase-disk-size-in-a-stateful-set helm uninstall helm install")
  • 15:30, 28 February 2024 Busk talk contribs created page Secret update k8s (Created page with "# OK kubectl create secret generic ssl-certs --from-file=ca-certificates.crt=./etc-ssl-certs/ca-certificates.crt --save-config --dry-run=client -o yaml | kubectl apply --serve...")
  • 05:09, 28 February 2024 Busk talk contribs created page Prometheus federation (Created page with "https://prometheus.io/docs/prometheus/latest/federation/")
  • 16:37, 26 February 2024 Busk talk contribs created page Az cli queries (Created page with "``` az vm list-sizes --location WestCentralUS --query "[].name" | grep M64 az vm list-sizes --location WestUS2 --query "[].name" | grep M64 ```")
  • 21:07, 25 February 2024 Busk talk contribs created page Pgsql-http (Created page with "SELECT http_set_curlopt('CURLOPT_TIMEOUT', '20'); SELECT http_set_curlopt('CURLOPT_TCP_KEEPALIVE', '20');")
  • 00:01, 25 February 2024 Busk talk contribs created page Prometheus queries (Created page with "``` probe_success < 1 probe_success{job="tcp"} ```")
  • 06:13, 24 February 2024 Busk talk contribs created page Prometheus blackbox curl (Created page with "``` curl http://blackbox-exporter-prometheus-blackbox-exporter.prometheus:9115/probe?target=example.org&module=icmp_ipv4 curl "http://blackbox-exporter-prometheus-blackbox-exp...")
  • 04:29, 24 February 2024 Busk talk contribs created page Prometheus ssh (Created page with "https://www.robustperception.io/checking-if-ssh-is-responding-with-prometheus/")
  • 19:16, 23 February 2024 Busk talk contribs created page Prometheus instance label control (Created page with "https://www.robustperception.io/controlling-the-instance-label/")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)