<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Komponenten der PostgreSQL-Community on PGSQL.CC</title>
    <link>https://pgsql.cc/de/</link>
    <description>Recent content in Komponenten der PostgreSQL-Community on PGSQL.CC</description>
    <generator>Hugo</generator>
    <language>de-DE</language>
    
    
    
      <lastBuildDate>Tue, 01 Sep 2026 11:57:20 +0800</lastBuildDate>
    
    
      <atom:link href="https://pgsql.cc/de/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
        <title>pgBadger 13.x – Versionshinweise</title>
        <link>https://pgsql.cc/de/pgbadger/releases/13/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/releases/13/</guid>
        <description>&lt;p&gt;Diese Einträge geben den vollständigen Upstream-Änderungsverlauf für pgBadger 13.x wieder, beginnend mit der neuesten Version.&lt;/p&gt;&#xA;&lt;h2 id=&#34;v13-2&#34;&gt;v13.2 · 2025-12-29&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Dieses Wartungsrelease von pgBadger behebt Probleme und enthält Patches, die Benutzer seit dem letzten Release gemeldet beziehungsweise eingereicht haben.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Korrigiert die Normalisierung von Zeichenfolgen mit korrekt gepaarten&#xA;einfachen Anführungszeichen und darin enthaltenen maskierten&#xA;Anführungszeichen. Dank an Bertrand Bourgier für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Korrigiert die Dokumentation zu den Anforderungen an Platzhalter.&lt;/li&gt;&#xA;&lt;li&gt;Korrigiert einen Fall, in dem keine Beispiel-Protokolleinträge für Fehler&#xA;gemeldet wurden. Dank an john doe für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Behebt ein mögliches Problem mit der Operatorrangfolge zwischen ! und %s.&#xA;Dank an Luca Santarelli und Philipp Trulson für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Aktualisiert den pgFormatter-Code auf v5.9.&lt;/li&gt;&#xA;&lt;li&gt;Fügt eine GitHub-CI-Aktion hinzu, die bei jedem Commit-Push Tests ausführt.&lt;/li&gt;&#xA;&lt;li&gt;Korrigiert das Parsen des Platzhalters %r in log_line_prefix. Dank an nike7o0&#xA;für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Beseitigt eine Warnung wegen eines nicht initialisierten Werts. Dank an Ales&#xA;Zeleny für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Erweitert die Dokumentation der ssh-options für das Parsen von&#xA;PostgreSQL-Protokollen um Beispiele. Dank an Ulrich Konrad für den Patch.&lt;/li&gt;&#xA;&lt;li&gt;Fügt die Option &amp;ndash;ssh-sudo hinzu, um Befehle über SSH mit sudo auszuführen.&#xA;Dank an Andrew Jackson für den Patch.&lt;/li&gt;&#xA;&lt;li&gt;Behebt ein mögliches Problem mit der Operatorrangfolge zwischen ! und dem&#xA;Stringvergleich eq. Dank an Adrien Nayrat für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Korrigiert das Parsen von PgBouncer-Statistiken. Dank an mrgtt für die&#xA;Meldung.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;v13-1&#34;&gt;v13.1 · 2025-03-16&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Dieses Wartungsrelease von pgBadger behebt seit dem letzten Release von&#xA;Benutzern gemeldete Probleme und fügt einige neue Funktionen hinzu:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Funktionen</title>
        <link>https://pgsql.cc/de/pgbouncer/features/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbouncer/features/</guid>
        <description>&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Mehrere Pooling-Modi mit unterschiedlich restriktiver Verbindungszuweisung:&lt;/p&gt;&#xA;&lt;dl&gt;&#xA;&lt;dt&gt;&lt;strong&gt;Sitzungs-Pooling&lt;/strong&gt;&lt;/dt&gt;&#xA;&lt;dd&gt;Die am wenigsten restriktive Methode. Wenn ein Client eine Verbindung herstellt, wird ihm für die gesamte Dauer der Clientverbindung eine Serververbindung zugewiesen. Trennt der Client die Verbindung, wird die Serververbindung wieder in den Pool zurückgegeben. Dieser Modus unterstützt sämtliche PostgreSQL-Funktionen.&lt;/dd&gt;&#xA;&lt;dt&gt;&lt;strong&gt;Transaktions-Pooling&lt;/strong&gt;&lt;/dt&gt;&#xA;&lt;dd&gt;Eine Serververbindung wird einem Client nur für die Dauer einer Transaktion zugewiesen. Sobald PgBouncer erkennt, dass die Transaktion beendet ist, wird die Serververbindung wieder in den Pool zurückgegeben. Dieser Modus ist mit einigen sitzungsbezogenen Funktionen von PostgreSQL nicht kompatibel. Er kann nur eingesetzt werden, wenn die Anwendung darauf abgestimmt ist und keine inkompatiblen Funktionen verwendet. Die folgende Tabelle führt diese Funktionen auf.&lt;/dd&gt;&#xA;&lt;dt&gt;&lt;strong&gt;Statement-Pooling&lt;/strong&gt;&lt;/dt&gt;&#xA;&lt;dd&gt;Die restriktivste Methode. Sie entspricht dem Transaktions-Pooling, lässt jedoch keine Transaktionen mit mehreren Anweisungen zu. Damit wird auf der Clientseite der „Autocommit“-Modus erzwungen; der Modus ist vor allem für PL/Proxy vorgesehen.&lt;/dd&gt;&#xA;&lt;/dl&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Geringer Speicherbedarf (standardmäßig 2 kB pro Verbindung), da PgBouncer vollständige Pakete nicht auf einmal einlesen muss.&lt;/p&gt;</description>
      </item>
    <item>
        <title>pgBadger 12.x – Versionshinweise</title>
        <link>https://pgsql.cc/de/pgbadger/releases/12/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/releases/12/</guid>
        <description>&lt;p&gt;Diese Einträge geben den vollständigen Upstream-Änderungsverlauf für&#xA;pgBadger 12.x wieder, beginnend mit der neuesten Version.&lt;/p&gt;&#xA;&lt;h2 id=&#34;v12-4&#34;&gt;v12.4 · 2023-12-25&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Dieses Wartungsrelease von pgBadger behebt Probleme, die Benutzer seit dem&#xA;letzten Release gemeldet haben.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Korrigiert den PgBouncer-Bericht für Version 1.21. Dank an Ales Zeleny für&#xA;den Patch.&lt;/li&gt;&#xA;&lt;li&gt;Verhindert, dass die Parallelität pro Datei die Anzahl der Dateien&#xA;übersteigt. Dank an maliangzhu für die Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Behebt den seit v12.3 fehlerhaften Regressionstest. Dank an ieshin für die&#xA;Meldung.&lt;/li&gt;&#xA;&lt;li&gt;Korrigiert Fälle, in denen Einträge der Ebene LOG als Einträge der Ebene&#xA;ERROR gezählt wurden. Dank an Matti Linnanvuori für die Meldung.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;v12-3&#34;&gt;v12.3 · 2023-11-27&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Dieses Wartungsrelease von pgBadger behebt Probleme, die Benutzer seit dem&#xA;letzten Release gemeldet haben. Es fügt außerdem einige neue Funktionen hinzu:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Download und Installation</title>
        <link>https://pgsql.cc/de/pgbadger/download/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/download/</guid>
        <description>&lt;h2 id=&#34;distribution-channels&#34;&gt;Verteilungskanal auswählen&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Kanal&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Verwendungszweck&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Bezugsquelle&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Offizielles Release&lt;/td&gt;&#xA;      &lt;td&gt;Quellcode-Tarballs und Versionshinweise&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://github.com/darold/pgbadger/releases&#34;&gt;GitHub Releases&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;RPM-Paket&lt;/td&gt;&#xA;      &lt;td&gt;RPM-basierte Linux-Distributionen&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://yum.postgresql.org/packages/&#34;&gt;PostgreSQL Yum Repository&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Debian/Ubuntu-Paket&lt;/td&gt;&#xA;      &lt;td&gt;APT-basierte Linux-Distributionen&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://wiki.postgresql.org/wiki/Apt&#34;&gt;PostgreSQL Apt Repository&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Entwicklungsquelle&lt;/td&gt;&#xA;      &lt;td&gt;Aktueller, noch nicht veröffentlichter Code&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://github.com/darold/pgbadger&#34;&gt;darold/pgbadger&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Der Dokumentations-Snapshot auf dieser Website basiert auf dem Quellcode der Version 13.2. Prüfen Sie vor dem Herunterladen stets die Releaseseite: Der lokale Snapshot ist bewusst fixiert, während das Originalprojekt weiterhin neue Versionen veröffentlicht.&lt;/p&gt;&#xA;&lt;h2 id=&#34;requirements&#34;&gt;Anforderungen&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Für HTML-Berichte benötigen Sie lediglich:&lt;/p&gt;</description>
      </item>
    <item>
        <title>pgBadger 11.x Versionshinweise</title>
        <link>https://pgsql.cc/de/pgbadger/releases/11/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/releases/11/</guid>
        <description>&lt;p&gt;Diese Einträge bewahren den vollständigen Änderungsverlauf des Originalprojekts für pgBadger 11.x; die neuesten Änderungen stehen zuerst.&lt;/p&gt;&#xA;&lt;h2 id=&#34;v11-8&#34;&gt;v11.8 · 2022-04-08&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Diese pgBadger-Version behebt einige Probleme, die Benutzer in den vergangenen drei Monaten gemeldet haben. Dazu gehören insbesondere zwei Korrekturen an der Erkennung neuer Protokolleinträge im inkrementellen Modus.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Erkennung neuer Protokolleinträge mit Zeitstempel korrigiert, wenn in log_line_prefix Millisekunden (%m) oder die Unix-Epoche (%n) verwendet werden.&lt;/li&gt;&#xA;&lt;li&gt;Erkennung neuer Protokolleinträge in lokalen Dateien korrigiert, wenn keine Mehrprozessverarbeitung eingesetzt wird.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Vollständige Liste der Änderungen und Danksagungen:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Kommandozeilenreferenz</title>
        <link>https://pgsql.cc/de/pgbadger/command-line/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/command-line/</guid>
        <description>&lt;p&gt;Diese Seite enthält die aus dem festgeschriebenen Upstream-Quellstand erzeugte&#xA;Befehlsreferenz. Optionsnamen und Hilfetexte bleiben unverändert, damit sie sich&#xA;direkt mit &lt;code&gt;pgbadger --help&lt;/code&gt; vergleichen lassen.&lt;/p&gt;&#xA;&lt;h2 id=&#34;usage-and-options&#34;&gt;Aufruf und Optionen&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Aufruf: pgbadger [options] logfile [&amp;hellip;]&lt;/p&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-3d65ae34-fence-0&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;text&#34; data-td-line-count=&#34;1&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-3d65ae34-fence-0-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;PostgreSQL log analyzer with fully detailed reports and graphs.&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Argumente:&lt;/p&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-3d65ae34-fence-1&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;text&#34; data-td-line-count=&#34;3&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-3d65ae34-fence-1-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;logfile can be a single log file, a list of files, or a shell command&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;returning a list of files. If you want to pass log content from stdin&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;use - as filename. Note that input from stdin will not work with csvlog.&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Optionen:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Verwendung: pgbouncer-Befehl</title>
        <link>https://pgsql.cc/de/pgbouncer/usage/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbouncer/usage/</guid>
        <description>&lt;hr&gt;&#xA;&lt;h2 id=&#34;synopsis&#34;&gt;Zusammenfassung&#xA;&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;pgbouncer [-d][-R][-v][-u user] &amp;lt;pgbouncer.ini&amp;gt;&#xA;pgbouncer -V|-h&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Unter Windows stehen folgende Optionen zur Verfügung:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;pgbouncer.exe [-v][-u user] &amp;lt;pgbouncer.ini&amp;gt;&#xA;pgbouncer.exe -V|-h&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Zusätzliche Optionen zur Einrichtung eines Windows-Dienstes:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;pgbouncer.exe --regservice   &amp;lt;pgbouncer.ini&amp;gt;&#xA;pgbouncer.exe --unregservice &amp;lt;pgbouncer.ini&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;description&#34;&gt;Beschreibung&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;pgbouncer&lt;/strong&gt; ist ein PostgreSQL-Verbindungspooler. Jede Zielanwendung kann sich mit &lt;strong&gt;pgbouncer&lt;/strong&gt; verbinden, als wäre PgBouncer ein PostgreSQL-Server. &lt;strong&gt;pgbouncer&lt;/strong&gt; stellt dann eine Verbindung zum tatsächlichen Server her oder verwendet eine bereits vorhandene Verbindung wieder.&lt;/p&gt;</description>
      </item>
    <item>
        <title>pgBadger 10.x – Versionshinweise</title>
        <link>https://pgsql.cc/de/pgbadger/releases/10/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/releases/10/</guid>
        <description>&lt;p&gt;Diese Einträge geben den vollständigen Upstream-Änderungsverlauf für pgBadger 10.x wieder, beginnend mit der neuesten Version.&lt;/p&gt;&#xA;&lt;h2 id=&#34;v10-3&#34;&gt;v10.3 · 2019-02-14&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Dieses Wartungsrelease von pgBadger behebt einige Probleme bei der automatischen Erkennung des Logformats sowie ein weiteres, von Benutzern gemeldetes Problem beim Parsen von PgBouncer-Logs. Es enthält außerdem eine neue Funktion:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Die Option -o | --outfile kann nun mehrfach verwendet werden, um&#xA;Ausgaben mit einem einzigen Befehl in mehreren Formaten zu erzeugen. Beispiel:&#xA;    pgbadger -o out.html -o out.json /log/pgsql-11.log&#xA;Dadurch entstehen zwei Berichte im HTML- und JSON-Format, die in den&#xA;beiden entsprechenden Dateien gespeichert werden.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Darüber hinaus enthält das Release Fehlerkorrekturen und Funktionsverbesserungen.&lt;/p&gt;</description>
      </item>
    <item>
        <title>PgBouncer kompilieren und installieren</title>
        <link>https://pgsql.cc/de/pgbouncer/install/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbouncer/install/</guid>
        <description>&lt;hr&gt;&#xA;&lt;h2 id=&#34;building&#34;&gt;Kompilieren&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Für das Kompilieren von PgBouncer werden einige Komponenten benötigt:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.gnu.org/software/make/&#34;&gt;GNU Make&lt;/a&gt;&#xA; 3.81+&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://libevent.org/&#34;&gt;Libevent&lt;/a&gt;&#xA; 2.0+&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.freedesktop.org/wiki/Software/pkg-config/&#34;&gt;pkg-config&lt;/a&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.openssl.org/&#34;&gt;OpenSSL&lt;/a&gt;&#xA; 1.0.1+ für TLS-Unterstützung&lt;/li&gt;&#xA;&lt;li&gt;(optional) &lt;a href=&#34;http://c-ares.haxx.se/&#34;&gt;c-ares&lt;/a&gt;&#xA; als Alternative zu evdns von Libevent&lt;/li&gt;&#xA;&lt;li&gt;(optional) LDAP-Bibliotheken&lt;/li&gt;&#xA;&lt;li&gt;(optional) PAM-Bibliotheken&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Wenn alle Abhängigkeiten installiert sind, führen Sie folgende Befehle aus:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;$ ./configure --prefix=/usr/local&#xA;$ make&#xA;$ make install&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Wenn Sie PgBouncer direkt aus dem Git-Repository oder für Windows kompilieren, beachten Sie die entsprechenden Anleitungen weiter unten.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Konfiguration der PostgreSQL-Protokollierung</title>
        <link>https://pgsql.cc/de/pgbadger/postgresql-logging/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/postgresql-logging/</guid>
        <description>&lt;p&gt;pgBadger kann nur Informationen auswerten, die PostgreSQL in das Protokoll schreibt. Beginnen Sie mit einem analysierbaren Präfix und einer gezielt gewählten Richtlinie für die Anweisungsprotokollierung. Fügen Sie anschließend die Betriebsereignisse hinzu, die Sie analysieren möchten.&lt;/p&gt;&#xA;&lt;h2 id=&#34;minimum-query-logging&#34;&gt;Mindestkonfiguration für die Abfrageprotokollierung&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Um Abfragetext und -dauer zu erfassen, aktivieren Sie die dauerabhängige Protokollierung von Anweisungen:&lt;/p&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-d8b90d6a-fence-0&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;postgresql&#34; data-td-line-count=&#34;1&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-d8b90d6a-fence-0-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-postgresql&#34; data-lang=&#34;postgresql&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;log_min_duration_statement&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;mf&#34;&gt;0&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;&lt;code&gt;0&lt;/code&gt; protokolliert jede abgeschlossene Anweisung. Auf einem stark ausgelasteten Server sollten Sie einen höheren Schwellenwert in Millisekunden wählen, um das Protokollvolumen zu begrenzen. Prüfen Sie den zusätzlichen Aufwand und die Zunahme des Speicherbedarfs, bevor Sie in der Produktion einen niedrigen Schwellenwert aktivieren.&lt;/p&gt;</description>
      </item>
    <item>
        <title>pgBadger 9.x – Versionshinweise</title>
        <link>https://pgsql.cc/de/pgbadger/releases/9/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/releases/9/</guid>
        <description>&lt;p&gt;Diese Einträge geben das vollständige Änderungsprotokoll der pgBadger-9.x-Reihe wieder, beginnend mit der neuesten Version.&lt;/p&gt;&#xA;&lt;h2 id=&#34;v9-2&#34;&gt;v9.2 · 2017-07-27&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Bei dieser pgBadger-Version handelt es sich um eine Wartungsversion, die einige neue Funktionen ergänzt.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Bericht über Checkpoint-Abstand und -Schätzung hinzugefügt.&lt;/li&gt;&#xA;&lt;li&gt;Unterstützung für Schlüsselwörter von AWS Redshift im SQL-Codeformatierer hinzugefügt.&lt;/li&gt;&#xA;&lt;li&gt;Automatische Erkennung des Logformats im Remote-Modus hinzugefügt, damit pgbouncer-Logdateien gemeinsam mit PostgreSQL-Logdateien remote analysiert werden können.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Darüber hinaus wurden einige Fehler behoben und Funktionen verbessert.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Quellcode-Releases zum Download</title>
        <link>https://pgsql.cc/de/pgbouncer/download/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbouncer/download/</guid>
        <description>&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-125&#34;&gt;PgBouncer 1.25&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.25.2/pgbouncer-1.25.2.tar.gz&#34;&gt;pgbouncer-1.25.2.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2026-05-08&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;865371 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.25.2/pgbouncer-1.25.2.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.25.1/pgbouncer-1.25.1.tar.gz&#34;&gt;pgbouncer-1.25.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2025-12-03&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;864801 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.25.1/pgbouncer-1.25.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.25.0/pgbouncer-1.25.0.tar.gz&#34;&gt;pgbouncer-1.25.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2025-11-09&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;863322 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.25.0/pgbouncer-1.25.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-124&#34;&gt;PgBouncer 1.24&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.24.1/pgbouncer-1.24.1.tar.gz&#34;&gt;pgbouncer-1.24.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2025-04-16&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;717796 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.24.1/pgbouncer-1.24.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.24.0/pgbouncer-1.24.0.tar.gz&#34;&gt;pgbouncer-1.24.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2025-01-10&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;706573 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.24.0/pgbouncer-1.24.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-123&#34;&gt;PgBouncer 1.23&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.23.1/pgbouncer-1.23.1.tar.gz&#34;&gt;pgbouncer-1.23.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2024-08-02&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;700025 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.23.1/pgbouncer-1.23.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.23.0/pgbouncer-1.23.0.tar.gz&#34;&gt;pgbouncer-1.23.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2024-07-03&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;694845 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.23.0/pgbouncer-1.23.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-122&#34;&gt;PgBouncer 1.22&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.22.1/pgbouncer-1.22.1.tar.gz&#34;&gt;pgbouncer-1.22.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2024-03-04&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;677351 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.22.1/pgbouncer-1.22.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.22.0/pgbouncer-1.22.0.tar.gz&#34;&gt;pgbouncer-1.22.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2024-01-31&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;670589 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.22.0/pgbouncer-1.22.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-121&#34;&gt;PgBouncer 1.21&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.21.0/pgbouncer-1.21.0.tar.gz&#34;&gt;pgbouncer-1.21.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2023-10-16&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;668211 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.21.0/pgbouncer-1.21.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-120&#34;&gt;PgBouncer 1.20&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.20.1/pgbouncer-1.20.1.tar.gz&#34;&gt;pgbouncer-1.20.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2023-08-09&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;638844 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.20.1/pgbouncer-1.20.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.20.0/pgbouncer-1.20.0.tar.gz&#34;&gt;pgbouncer-1.20.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2023-07-20&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;638020 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.20.0/pgbouncer-1.20.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-119&#34;&gt;PgBouncer 1.19&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.19.1/pgbouncer-1.19.1.tar.gz&#34;&gt;pgbouncer-1.19.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2023-05-31&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;623569 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.19.1/pgbouncer-1.19.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.19.0/pgbouncer-1.19.0.tar.gz&#34;&gt;pgbouncer-1.19.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2023-05-04&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;616947 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.19.0/pgbouncer-1.19.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-118&#34;&gt;PgBouncer 1.18&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.18.0/pgbouncer-1.18.0.tar.gz&#34;&gt;pgbouncer-1.18.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2022-12-12&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;600825 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.18.0/pgbouncer-1.18.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-117&#34;&gt;PgBouncer 1.17&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.17.0/pgbouncer-1.17.0.tar.gz&#34;&gt;pgbouncer-1.17.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2022-03-23&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;598294 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.17.0/pgbouncer-1.17.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-116&#34;&gt;PgBouncer 1.16&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.16.1/pgbouncer-1.16.1.tar.gz&#34;&gt;pgbouncer-1.16.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2021-11-11&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;591450 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.16.1/pgbouncer-1.16.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.16.0/pgbouncer-1.16.0.tar.gz&#34;&gt;pgbouncer-1.16.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2021-08-09&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;592136 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.16.0/pgbouncer-1.16.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-115&#34;&gt;PgBouncer 1.15&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.15.0/pgbouncer-1.15.0.tar.gz&#34;&gt;pgbouncer-1.15.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2020-11-19&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;588042 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.15.0/pgbouncer-1.15.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-114&#34;&gt;PgBouncer 1.14&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.14.0/pgbouncer-1.14.0.tar.gz&#34;&gt;pgbouncer-1.14.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2020-06-11&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;578955 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.14.0/pgbouncer-1.14.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-113&#34;&gt;PgBouncer 1.13&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.13.0/pgbouncer-1.13.0.tar.gz&#34;&gt;pgbouncer-1.13.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2020-04-27&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;574955 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.13.0/pgbouncer-1.13.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-112&#34;&gt;PgBouncer 1.12&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.12.0/pgbouncer-1.12.0.tar.gz&#34;&gt;pgbouncer-1.12.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2019-10-17&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;567465 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.12.0/pgbouncer-1.12.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-111&#34;&gt;PgBouncer 1.11&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.11.0/pgbouncer-1.11.0.tar.gz&#34;&gt;pgbouncer-1.11.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2019-08-27&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;571414 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.11.0/pgbouncer-1.11.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-110&#34;&gt;PgBouncer 1.10&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.10.0/pgbouncer-1.10.0.tar.gz&#34;&gt;pgbouncer-1.10.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2019-07-01&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;480571 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.10.0/pgbouncer-1.10.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-19&#34;&gt;PgBouncer 1.9&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.9.0/pgbouncer-1.9.0.tar.gz&#34;&gt;pgbouncer-1.9.0.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2018-08-13&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;469300 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.9.0/pgbouncer-1.9.0.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-18&#34;&gt;PgBouncer 1.8&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.8.1/pgbouncer-1.8.1.tar.gz&#34;&gt;pgbouncer-1.8.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2017-12-20&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;465930 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.8.1/pgbouncer-1.8.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.8/pgbouncer-1.8.tar.gz&#34;&gt;pgbouncer-1.8.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2017-12-19&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;465612 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.8/pgbouncer-1.8.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-17&#34;&gt;PgBouncer 1.7&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.7.2/pgbouncer-1.7.2.tar.gz&#34;&gt;pgbouncer-1.7.2.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2016-02-26&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;462374 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.7.2/pgbouncer-1.7.2.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.7.1/pgbouncer-1.7.1.tar.gz&#34;&gt;pgbouncer-1.7.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2016-02-18&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;461903 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.7.1/pgbouncer-1.7.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.7/pgbouncer-1.7.tar.gz&#34;&gt;pgbouncer-1.7.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2015-12-18&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;459080 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.7/pgbouncer-1.7.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-16&#34;&gt;PgBouncer 1.6&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.6.1/pgbouncer-1.6.1.tar.gz&#34;&gt;pgbouncer-1.6.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2015-09-03&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;431076 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.6.1/pgbouncer-1.6.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.6/pgbouncer-1.6.tar.gz&#34;&gt;pgbouncer-1.6.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2015-08-01&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;412700 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.6/pgbouncer-1.6.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-15&#34;&gt;PgBouncer 1.5&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.5/pgbouncer-1.5.5.tar.gz&#34;&gt;pgbouncer-1.5.5.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2015-04-09&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;336145 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.5/pgbouncer-1.5.5.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.4/pgbouncer-1.5.4.tar.gz&#34;&gt;pgbouncer-1.5.4.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2012-11-28&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;339610 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.4/pgbouncer-1.5.4.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.3/pgbouncer-1.5.3.tar.gz&#34;&gt;pgbouncer-1.5.3.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2012-09-12&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;339013 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.3/pgbouncer-1.5.3.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.2/pgbouncer-1.5.2.tar.gz&#34;&gt;pgbouncer-1.5.2.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2012-05-29&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;335338 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.2/pgbouncer-1.5.2.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.1/pgbouncer-1.5.1.tar.gz&#34;&gt;pgbouncer-1.5.1.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2012-04-17&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;334413 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5.1/pgbouncer-1.5.1.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5/pgbouncer-1.5.tar.gz&#34;&gt;pgbouncer-1.5.tar.gz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2012-01-05&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;411488 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.5/pgbouncer-1.5.tar.gz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-14&#34;&gt;PgBouncer 1.4&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.4.2/pgbouncer-1.4.2.tgz&#34;&gt;pgbouncer-1.4.2.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2011-06-16&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;283204 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.4.2/pgbouncer-1.4.2.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.4.1/pgbouncer-1.4.1.tgz&#34;&gt;pgbouncer-1.4.1.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2011-04-01&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;282728 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.4.1/pgbouncer-1.4.1.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.4/pgbouncer-1.4.tgz&#34;&gt;pgbouncer-1.4.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2011-01-11&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;231691 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.4/pgbouncer-1.4.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-13&#34;&gt;PgBouncer 1.3&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.4/pgbouncer-1.3.4.tgz&#34;&gt;pgbouncer-1.3.4.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2010-09-09&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;167957 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.4/pgbouncer-1.3.4.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.3/pgbouncer-1.3.3.tgz&#34;&gt;pgbouncer-1.3.3.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2010-05-10&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;167476 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.3/pgbouncer-1.3.3.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.2/pgbouncer-1.3.2.tgz&#34;&gt;pgbouncer-1.3.2.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2010-03-15&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;166756 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.2/pgbouncer-1.3.2.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.1/pgbouncer-1.3.1.tgz&#34;&gt;pgbouncer-1.3.1.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2009-07-06&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;161518 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3.1/pgbouncer-1.3.1.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3/pgbouncer-1.3.tgz&#34;&gt;pgbouncer-1.3.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2009-02-18&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;160154 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.3/pgbouncer-1.3.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-12&#34;&gt;PgBouncer 1.2&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2.3/pgbouncer-1.2.3.tgz&#34;&gt;pgbouncer-1.2.3.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2008-08-08&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;145372 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2.3/pgbouncer-1.2.3.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2.2/pgbouncer-1.2.2.tgz&#34;&gt;pgbouncer-1.2.2.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2008-08-06&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;145017 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2.2/pgbouncer-1.2.2.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2.1/pgbouncer-1.2.1.tgz&#34;&gt;pgbouncer-1.2.1.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2008-08-04&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;144903 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2.1/pgbouncer-1.2.1.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2/pgbouncer-1.2.tgz&#34;&gt;pgbouncer-1.2.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2008-07-29&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;143915 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.2/pgbouncer-1.2.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-11&#34;&gt;PgBouncer 1.1&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: right&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.1.2/pgbouncer-1.1.2.tgz&#34;&gt;pgbouncer-1.1.2.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td&gt;2007-12-10&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: right&#34;&gt;122054 Bytes&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.1.2/pgbouncer-1.1.2.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.1.1/pgbouncer-1.1.1.tgz&#34;&gt;pgbouncer-1.1.1.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td&gt;2007-10-26&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: right&#34;&gt;121042 Bytes&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.1.1/pgbouncer-1.1.1.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.1/pgbouncer-1.1.tgz&#34;&gt;pgbouncer-1.1.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td&gt;2007-10-09&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: right&#34;&gt;120462 Bytes&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.1/pgbouncer-1.1.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;pgbouncer-10&#34;&gt;PgBouncer 1.0&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Datei&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Datum&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;Größe&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34; style=&#34;text-align: center&#34;&gt;SHA256-Prüfsumme&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.8/pgbouncer-1.0.8.tgz&#34;&gt;pgbouncer-1.0.8.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-06-18&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;93636 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.8/pgbouncer-1.0.8.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.7/pgbouncer-1.0.7.tgz&#34;&gt;pgbouncer-1.0.7.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-04-19&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;93086 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.7/pgbouncer-1.0.7.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.6/pgbouncer-1.0.6.tgz&#34;&gt;pgbouncer-1.0.6.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-04-12&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;92244 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.6/pgbouncer-1.0.6.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.5/pgbouncer-1.0.5.tgz&#34;&gt;pgbouncer-1.0.5.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-04-11&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;91934 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.5/pgbouncer-1.0.5.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.4/pgbouncer-1.0.4.tgz&#34;&gt;pgbouncer-1.0.4.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-04-11&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;91889 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.4/pgbouncer-1.0.4.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.3/pgbouncer-1.0.3.tgz&#34;&gt;pgbouncer-1.0.3.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-04-11&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;91489 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.3/pgbouncer-1.0.3.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.2/pgbouncer-1.0.2.tgz&#34;&gt;pgbouncer-1.0.2.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-03-28&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;90555 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.2/pgbouncer-1.0.2.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.1/pgbouncer-1.0.1.tgz&#34;&gt;pgbouncer-1.0.1.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-03-15&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;89609 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0.1/pgbouncer-1.0.1.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0/pgbouncer-1.0.tgz&#34;&gt;pgbouncer-1.0.tgz&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;2007-03-13&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;88587 Bytes&lt;/td&gt;&#xA;      &lt;td style=&#34;text-align: center&#34;&gt;&lt;a href=&#34;https://www.pgbouncer.org/downloads/files/1.0/pgbouncer-1.0.tgz.sha256&#34;&gt;SHA256-Prüfsumme&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;binary-packages&#34;&gt;Binärpakete&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Viele Betriebssystemdistributionen stellen ein eigenes natives PgBouncer-Paket&#xA;beziehungsweise einen Port bereit. Prüfen Sie daher zunächst, ob PgBouncer&#xA;bereits für Ihr Betriebssystem verfügbar ist.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Parallelverarbeitung</title>
        <link>https://pgsql.cc/de/pgbadger/parallel-processing/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/parallel-processing/</guid>
        <description>&lt;p&gt;pgBadger bietet zwei einander ergänzende Modi für die Parallelverarbeitung. Wählen Sie den Modus anhand der Struktur Ihrer Eingabedaten und nicht allein nach der Anzahl der CPUs.&lt;/p&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Option&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Parallelitätseinheit&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Geeignet für&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Wichtigste Einschränkung&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;code&gt;-j N&lt;/code&gt; / &lt;code&gt;--jobs N&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;td&gt;Abschnitte einer Protokolldatei&lt;/td&gt;&#xA;      &lt;td&gt;eine große Protokolldatei mit wahlfreiem Zugriff&lt;/td&gt;&#xA;      &lt;td&gt;An Abschnittsgrenzen kann eine geringe Anzahl von Abfragen doppelt gezählt oder ausgelassen werden&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;&lt;code&gt;-J N&lt;/code&gt; / &lt;code&gt;--Jobs N&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;td&gt;vollständige Protokolldateien&lt;/td&gt;&#xA;      &lt;td&gt;viele unabhängige Protokolle&lt;/td&gt;&#xA;      &lt;td&gt;nützlich nur, wenn genügend Dateien vorhanden sind, um die Worker auszulasten&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;h2 id=&#34;single-file-jobs&#34;&gt;Eine große Datei mit &lt;code&gt;-j&lt;/code&gt; aufteilen&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-1a2a04d3-fence-0&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;console&#34; data-td-line-count=&#34;1&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-1a2a04d3-fence-0-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-console&#34; data-lang=&#34;console&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;gp&#34;&gt;$&lt;/span&gt; pgbadger -j &lt;span class=&#34;m&#34;&gt;8&lt;/span&gt; /var/log/postgresql/postgresql.log&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Der Algorithmus des Originalprojekts teilt jede Datei in &lt;code&gt;N&lt;/code&gt; Bytebereiche auf, startet für jeden Bereich einen eigenen Parser, schreibt temporäre Binärstatistiken und führt diese anschließend zum endgültigen Bericht zusammen.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Inkrementelle Berichte</title>
        <link>https://pgsql.cc/de/pgbadger/incremental-reports/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/incremental-reports/</guid>
        <description>&lt;p&gt;Im inkrementellen Modus speichert pgBadger die ausgewerteten Statistiken im Binärformat. Daraus erstellt es pro Tag einen HTML-Bericht, pro Woche einen kumulativen Bericht und einen kalenderartigen Index, der diese Berichte miteinander verknüpft. Der Modus ist für die wiederholte Verarbeitung rotierter Protokolle vorgesehen, ohne dieselben Einträge erneut zu zählen.&lt;/p&gt;&#xA;&lt;h2 id=&#34;daily-and-weekly&#34;&gt;Tägliche und wöchentliche Berichte erstellen&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Führen Sie pgBadger nach der täglichen Protokollrotation aus und geben Sie ein dauerhaftes Ausgabeverzeichnis an:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Ausgabeformate</title>
        <link>https://pgsql.cc/de/pgbadger/output-formats/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/output-formats/</guid>
        <description>&lt;p&gt;pgBadger bestimmt das Ausgabeformat anhand der Dateiendung oder über &lt;code&gt;-x&lt;/code&gt; / &lt;code&gt;--extension&lt;/code&gt;. Verwenden Sie &lt;code&gt;-o&lt;/code&gt; / &lt;code&gt;--outfile&lt;/code&gt; mehrfach, um in einem einzigen Analyselauf mehrere Formate zu erzeugen.&lt;/p&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Format&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Typische Erweiterung&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Empfohlener Einsatz&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;HTML&lt;/td&gt;&#xA;      &lt;td&gt;&lt;code&gt;.html&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;td&gt;interaktiver, gut lesbarer Bericht mit Diagrammen&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Text&lt;/td&gt;&#xA;      &lt;td&gt;&lt;code&gt;.txt&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;td&gt;Prüfung im Terminal und einfache Archivierung&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Binär&lt;/td&gt;&#xA;      &lt;td&gt;&lt;code&gt;.bin&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;td&gt;zusammenführbare Zwischenstatistiken und Neuerstellung von Berichten&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;JSON&lt;/td&gt;&#xA;      &lt;td&gt;&lt;code&gt;.json&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;td&gt;Integration mit anderer Software; erfordert &lt;code&gt;JSON::XS&lt;/code&gt;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Roh-CSV&lt;/td&gt;&#xA;      &lt;td&gt;gewählte Ausgabedatei&lt;/td&gt;&#xA;      &lt;td&gt;zeilenorientierter Export mit &lt;code&gt;--dump-raw-csv&lt;/code&gt;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;h2 id=&#34;html-and-text&#34;&gt;HTML und Text&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Die Standardausgabe ist &lt;code&gt;out.html&lt;/code&gt;:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Beispielberichte</title>
        <link>https://pgsql.cc/de/pgbadger/sample-reports/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/sample-reports/</guid>
        <description>&lt;p&gt;Die Beispielberichte wurden im Mai 2022 mit pgBadger 11.8 erzeugt. Die Originalbeispiele sind lokal auf dieser Website eingebunden. Daher bleiben Berichtsnavigation, Diagramme, Stylesheets und Skripte verfügbar, ohne auf den Server des Originalprojekts zugreifen zu müssen.&lt;/p&gt;&#xA;&lt;div class=&#34;td-table-scroll td-table-scroll--static&#34;&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Beispiel&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Was es zeigt&lt;/th&gt;&#xA;      &lt;th scope=&#34;col&#34;&gt;Lokale Kopie&lt;/th&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Vollständiger Bericht&lt;/td&gt;&#xA;      &lt;td&gt;PostgreSQL-Aktivität zusammen mit PgBouncer-Statistiken&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://pgsql.cc/third_party/pgbadger/examples/sample.html&#34;&gt;Öffnen Sie den vollständigen Bericht&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Inkrementeller Bericht&lt;/td&gt;&#xA;      &lt;td&gt;Kalenderindex, wöchentliche Aggregation und tägliche Seiten&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://pgsql.cc/third_party/pgbadger/examples/report/index.html&#34;&gt;Öffnen Sie den inkrementellen Index&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;    &lt;tr&gt;&#xA;      &lt;td&gt;Fehler und Ereignisse&lt;/td&gt;&#xA;      &lt;td&gt;Ein Bericht, der auf Fehler und betriebliche Ereignisse beschränkt ist&lt;/td&gt;&#xA;      &lt;td&gt;&lt;a href=&#34;https://pgsql.cc/third_party/pgbadger/examples/errors.html&#34;&gt;Öffnen Sie den Fehlerbericht&lt;/a&gt;&#xA;&lt;/td&gt;&#xA;    &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;h2 id=&#34;complete-report&#34;&gt;Vollständiger Bericht&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Der vollständige Bericht ist eine in sich geschlossene HTML-Datei. Über die obere Navigationsleiste können Sie globale Statistiken, Abfragen, Sitzungen, Verbindungen, temporäre Dateien, Prüfpunkte, Autovacuum-Aktivität, Sperren und PgBouncer-spezifische Diagramme untersuchen.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Community</title>
        <link>https://pgsql.cc/de/pgbouncer/community/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbouncer/community/</guid>
        <description>&lt;hr&gt;&#xA;&lt;h2 id=&#34;tutorials&#34;&gt;Tutorials&#xA;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://get.enterprisedb.com/docs/Tutorial_All_PPSS_pgBouncer.pdf&#34;&gt;So konfigurieren Sie PgBouncer für Postgres Plus Standard Server&lt;/a&gt;&#xA;&lt;/p&gt;&#xA;&lt;p&gt;Gute Übersicht über PgBouncer-Konzepte.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.depesz.com/2012/12/02/what-is-the-point-of-bouncing/&#34;&gt;Wozu dient das „Bouncing“?&lt;/a&gt;&#xA;&lt;/p&gt;&#xA;&lt;p&gt;Beschreibt die Unterschiede zwischen den Pooling-Modi.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;support&#34;&gt;Support&#xA;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/pgbouncer/pgbouncer&#34;&gt;Projektseite&lt;/a&gt;&#xA; auf GitHub&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/pgbouncer/pgbouncer/issues&#34;&gt;Issue-Tracker&lt;/a&gt;&#xA; auf GitHub&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://stackoverflow.com/questions/tagged/pgbouncer&#34;&gt;PgBouncer-Themenbereich&lt;/a&gt;&#xA; auf Stack Overflow&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/pgbouncer/pgbouncer/discussions&#34;&gt;Community-Diskussionen&lt;/a&gt;&#xA; auf GitHub&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
      </item>
    <item>
        <title>Häufig gestellte Fragen</title>
        <link>https://pgsql.cc/de/pgbouncer/faq/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbouncer/faq/</guid>
        <description>&lt;hr&gt;&#xA;&lt;h2 id=&#34;how-to-connect-to-pgbouncer&#34;&gt;Wie stelle ich eine Verbindung zu PgBouncer her?&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;PgBouncer verhält sich wie ein PostgreSQL-Server. Richten Sie Ihren Client daher&#xA;einfach auf den PgBouncer-Port.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;how-to-load-balance-queries-between-several-servers&#34;&gt;Wie lassen sich Abfragen auf mehrere Server verteilen?&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;PgBouncer bietet keine interne Multi-Host-Konfiguration.&#xA;Die Verteilung ist jedoch mit externen Werkzeugen möglich:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;DNS-Round-Robin. Hinterlegen Sie mehrere IP-Adressen für einen DNS-Namen.&#xA;PgBouncer führt nicht bei jeder neuen Verbindung eine DNS-Abfrage durch.&#xA;Stattdessen speichert es alle IP-Adressen im Cache und verteilt die&#xA;Verbindungen intern per Round-Robin. Hinweis: Sind einem Namen mehr als 8&#xA;IP-Adressen zugeordnet, muss das DNS-Backend das EDNS0-Protokoll&#xA;unterstützen. Einzelheiten finden Sie in der README-Datei.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Watchdog-Unterstützung</title>
        <link>https://pgsql.cc/de/patroni/watchdog/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/patroni/watchdog/</guid>
        <description>&lt;p&gt;&lt;a id=&#34;watchdog&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Das gleichzeitige Ausführen mehrerer PostgreSQL-Server als primäre Server kann zu Datenverlusten aufgrund von unterschiedlichen Zeitlinien führen. Diese Situation wird auch als &amp;ldquo;Split-Brain&amp;rdquo;-Problem bezeichnet. Um das Split-Brain-Problem zu vermeiden, muss Patroni sicherstellen, dass PostgreSQL keine Transaktionsbestätigungen akzeptiert, nachdem der Schlüssel für den primären Server in der DCS abgelaufen ist. Unter normalen Umständen versucht Patroni, dies durch das Stoppen von PostgreSQL zu erreichen, falls der Update-Vorgang für den primären Schlüssel aus irgendeinem Grund fehlschlägt. Dies kann jedoch aus verschiedenen Gründen fehlschlagen:&lt;/p&gt;</description>
      </item>
    <item>
        <title>Pausen/fortsetzen-Modus für den_Cluster</title>
        <link>https://pgsql.cc/de/patroni/pause/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/patroni/pause/</guid>
        <description>&lt;p&gt;&lt;a id=&#34;pause&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;the-goal&#34;&gt;Das Ziel&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Unter bestimmten Umständen muss Patroni vorübergehend die Verwaltung des Clusters aufgeben, während der Clusterstatus in DCS erhalten bleibt. Mögliche Anwendungsfälle sind ungewöhnliche Aktivitäten im Cluster, wie z. B. größere Versions-Upgrades oder die Wiederherstellung von Daten. Während dieser Aktivitäten werden die Knoten oft gestartet und gestoppt, aus Gründen, die Patroni nicht kennt. Einige Knoten können sogar vorübergehend als primäre Knoten fungieren, was die Annahme verletzt, dass nur ein primärer Knoten aktiv ist. Daher muss Patroni in der Lage sein, sich vom laufenden Cluster zu trennen und eine ähnliche Funktion wie der Wartigungsmodus in Pacemaker zu implementieren.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Support und Mitwirkung</title>
        <link>https://pgsql.cc/de/pgbadger/support/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/support/</guid>
        <description>&lt;p&gt;pgBadger wird als offenes Projekt gepflegt. Fehlerberichte, Funktionsvorschläge, Dokumentationskorrekturen und Patches werden über das Repository des Originalprojekts auf GitHub verwaltet.&lt;/p&gt;&#xA;&lt;h2 id=&#34;bugs-and-features&#34;&gt;Fehler und Funktionswünsche&#xA;&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Aktualisieren Sie pgBadger auf die neueste veröffentlichte Version und prüfen Sie, ob das Verhalten weiterhin auftritt.&lt;/li&gt;&#xA;&lt;li&gt;Suchen Sie in den &lt;a href=&#34;https://github.com/darold/pgbadger/issues&#34;&gt;offenen Issues&lt;/a&gt;&#xA; und &lt;a href=&#34;https://github.com/darold/pgbadger/issues?q=is%3Aissue&amp;#43;is%3Aclosed&#34;&gt;geschlossenen Issues&lt;/a&gt;&#xA; nach einer vorhandenen Lösung.&lt;/li&gt;&#xA;&lt;li&gt;Reduzieren Sie das Problem auf einen möglichst kleinen, bereinigten Protokollauszug und die kürzeste Befehlszeile, mit denen es sich noch reproduzieren lässt.&lt;/li&gt;&#xA;&lt;li&gt;Entfernen Sie Anmeldeinformationen, sensible SQL, Bind-Werte, Hostnamen, Adressen und Geschäftsdaten.&lt;/li&gt;&#xA;&lt;li&gt;Erstellen Sie ein &lt;a href=&#34;https://github.com/darold/pgbadger/issues/new&#34;&gt;neues Issue&lt;/a&gt;&#xA; und geben Sie die pgBadger-Version, das Betriebssystem, das Eingabeformat, die genauen Optionen sowie das beobachtete und das erwartete Ergebnis an.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Geben Sie bei Abstürzen oder Parserfehlern nur die unbedingt erforderlichen, bereinigten Protokollzeilen an, mit denen sich der Fehler reproduzieren lässt. Ein vollständiges Produktionsprotokoll oder ein erzeugter Bericht eignet sich nur selten für ein öffentliches Issue.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Lizenz und Urhebernachweise</title>
        <link>https://pgsql.cc/de/pgbadger/license/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/pgbadger/license/</guid>
        <description>&lt;p&gt;pgBadger ist freie Open-Source-Software, die unter der PostgreSQL-Lizenz verbreitet wird. Sie darf kostenlos genutzt, kopiert, verändert und verteilt werden, sofern die Urheberrechts- und Lizenzhinweise erhalten bleiben.&lt;/p&gt;&#xA;&lt;h2 id=&#34;postgresql-license&#34;&gt;PostgreSQL-Lizenz&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Copyright (c) 2012-2026, Gilles Darold&lt;/p&gt;&#xA;&lt;p&gt;Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Integration mit anderen Tools</title>
        <link>https://pgsql.cc/de/patroni/tools_integration/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/patroni/tools_integration/</guid>
        <description>&lt;p&gt;&lt;a id=&#34;tools_integration&#34;&gt;&lt;/a&gt;&#xA;Patroni kann sich in andere Tools in Ihrer Umgebung integrieren. In diesem Abschnitt finden Sie eine Liste von Beispielen, die zwar keine vollständige Liste darstellen, aber Ihnen Ideen geben können, wie Patroni mit anderen Tools zusammenarbeiten kann.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;barman&#34;&gt;Barman&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Patroni liefert eine Anwendung namens &lt;code&gt;patroni_barman&lt;/code&gt;, die über Logik verfügt, um mit &lt;code&gt;pg-backup-api&lt;/code&gt; zu kommunizieren, sodass Sie Barman-Operationen entfernt durchführen können.&lt;/p&gt;&#xA;&lt;p&gt;Diese Anwendung verfügt derzeit über mehrere Unterkommandos: &lt;code&gt;recover&lt;/code&gt; und &lt;code&gt;config-switch&lt;/code&gt;.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Sicherheitshinweise</title>
        <link>https://pgsql.cc/de/patroni/security/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/patroni/security/</guid>
        <description>&lt;p&gt;&lt;a id=&#34;security&#34;&gt;&lt;/a&gt;&#xA;Ein Patroni-Cluster verfügt über zwei Schnittstellen, die vor unbefugtem Zugriff geschützt werden müssen: das verteilte Konfigurationsspeicher (DCS) und die Patroni REST-API.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;protecting-dcs&#34;&gt;Schutz des DCS&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Sowohl Patroni als auch &lt;a href=&#34;https://pgsql.cc/patroni/patronictl/#patronictl&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;patronictl&lt;/a&gt;&#xA; speichern und abrufen Daten von/zum DCS.&lt;/p&gt;&#xA;&lt;p&gt;Obwohl der DCS keine sensiblen Informationen enthält, ermöglicht er die Änderung einiger Konfigurationen von Patroni/Postgres. Daher sollte der DCS selbst daher als erstes geschützt werden.&lt;/p&gt;&#xA;&lt;p&gt;Die Details zum Schutz hängen vom verwendeten Typ des DCS ab. Die Authentifizierungs- und Verschlüsselungsparameter (Token/Basic-Auth/Client-Zertifikate) für die unterstützten DCS-Typen sind in den &lt;a href=&#34;https://pgsql.cc/patroni/config/yaml/#yaml&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;Einstellungen&lt;/a&gt;&#xA; beschrieben.&lt;/p&gt;</description>
      </item>
    <item>
        <title>HA-Multi-Datacenter</title>
        <link>https://pgsql.cc/de/patroni/ha_multi_dc/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/patroni/ha_multi_dc/</guid>
        <description>&lt;p&gt;&lt;a id=&#34;ha_multi_dc&#34;&gt;&lt;/a&gt;&#xA;Die Hochverfügbarkeit eines PostgreSQL-Clusters, der in mehreren Rechenzentren bereitgestellt wird, basiert auf Replikation, die synchron oder asynchron erfolgen kann (siehe &lt;a href=&#34;https://pgsql.cc/patroni/replication_modes/#replication_modes&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;Replikationsmodi&lt;/a&gt;&#xA;).&lt;/p&gt;&#xA;&lt;p&gt;In beiden Fällen ist es wichtig, die folgenden Konzepte klar zu verstehen:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;PostgreSQL kann nur als primärer oder sekundärer Knoten betrieben werden, wenn es den Schlüssel besitzt und diesen aktualisieren kann.&lt;/li&gt;&#xA;&lt;li&gt;Sie sollten eine ungerade Anzahl von etcd-, ZooKeeper- oder Consul-Knoten betreiben: 3 oder 5!&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;synchronous-replication&#34;&gt;Synchrones Replikation&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Um einen mehrere Rechenzentrum (DC) umfassenden Cluster zu haben, der automatisch einen Ausfall einer Zone tolerieren kann, sind mindestens 3 erforderlich.&lt;/p&gt;</description>
      </item>
    <item>
        <title>1. Voraussetzungen</title>
        <link>https://pgsql.cc/de/haproxy/prerequisites/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/haproxy/prerequisites/</guid>
        <description>&lt;!-- Generated by scripts/generate-haproxy-docs.py from pinned upstream text. --&gt;&#xA;&lt;p&gt;Dieses Dokument erläutert, wie Sie HAProxy starten, stoppen und verwalten sowie Störungen diagnostizieren. Darüber hinaus behandelt es einige bekannte Einschränkungen und Fallstricke. Die Konfiguration von HAProxy ist nicht Gegenstand dieses Dokuments (lesen Sie dazu &lt;a href=&#34;https://pgsql.cc/haproxy/http-fundamentals/&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;&lt;code&gt;configuration.txt&lt;/code&gt;&lt;/a&gt;&#xA;).&lt;/p&gt;&#xA;&lt;p&gt;Das Dokument setzt voraus, dass Sie über ausreichende Kenntnisse in der Administration UNIX-ähnlicher Betriebssysteme verfügen, täglich mit der Shell arbeiten und mit Werkzeugen zur Fehlerdiagnose wie strace und tcpdump vertraut sind.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Schlüssel anhand eines Präfixes abrufen</title>
        <link>https://pgsql.cc/de/etcd/tasks/developer/how-to-get-key-by-prefix/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/etcd/tasks/developer/how-to-get-key-by-prefix/</guid>
        <description>&lt;h2 id=&#34;pre-requisites&#34;&gt;Voraussetzungen&#xA;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://pgsql.cc/etcd/install/&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;etcdctl installieren&lt;/a&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://pgsql.cc/etcd/dev-guide/local_cluster/&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;Lokalen Cluster einrichten&lt;/a&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;get-keys-by-prefix&#34;&gt;Schlüssel anhand eines Präfixes abrufen&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-45445697-fence-0&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;bash&#34; data-td-line-count=&#34;1&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-45445697-fence-0-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ etcdctl --endpoints&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;nv&#34;&gt;$ENDPOINTS&lt;/span&gt; get PREFIX --prefix&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;h3 id=&#34;global-options&#34;&gt;Globale Optionen&#xA;&lt;/h3&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-45445697-fence-1&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;bash&#34; data-td-line-count=&#34;1&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-45445697-fence-1-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;--endpoints&lt;span class=&#34;o&#34;&gt;=[&lt;/span&gt;127.0.0.1:2379&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;, gRPC endpoints&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;h3 id=&#34;options&#34;&gt;Optionen&#xA;&lt;/h3&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-45445697-fence-2&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;bash&#34; data-td-line-count=&#34;1&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-45445697-fence-2-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;--prefix, get a range of keys with matching prefix&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;h3 id=&#34;example&#34;&gt;Beispiel&#xA;&lt;/h3&gt;&#xA;&lt;img class=&#34;td-image&#34; src=&#34;https://pgsql.cc/etcd/tasks/img/get-by-prefix.gif&#34; alt=&#34;03_etcdctl_get_by_prefix_2016050501&#34; loading=&#34;lazy&#34; decoding=&#34;async&#34;&gt;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-45445697-fence-3&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;shell&#34; data-td-line-count=&#34;5&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-45445697-fence-3-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;etcdctl --endpoints&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;nv&#34;&gt;$ENDPOINTS&lt;/span&gt; put web1 value1&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;etcdctl --endpoints&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;nv&#34;&gt;$ENDPOINTS&lt;/span&gt; put web2 value2&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;etcdctl --endpoints&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;nv&#34;&gt;$ENDPOINTS&lt;/span&gt; put web3 value3&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;etcdctl --endpoints&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;nv&#34;&gt;$ENDPOINTS&lt;/span&gt; get web --prefix&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
      </item>
    <item>
        <title>Schnellstart</title>
        <link>https://pgsql.cc/de/etcd/quickstart/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/etcd/quickstart/</guid>
        <description>&lt;p&gt;Befolgen Sie diese Anweisungen, um einen lokalen Ein-Mitglied-Cluster mit etcd zu installieren, zu starten und zu testen:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Installieren Sie etcd aus vorkompilierten Binärdateien oder aus dem Quellcode. Weitere Einzelheiten finden Sie in der &lt;a href=&#34;https://pgsql.cc/etcd/install/&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;Installationsanleitung&lt;/a&gt;&#xA;.&lt;/p&gt;&#xA;&lt;div class=&#34;td-callout td-callout--warning&#34; role=&#34;note&#34;&gt;&#xA;  &lt;div class=&#34;td-callout__title&#34;&gt;&lt;i class=&#34;td-callout__icon fa-solid fa-triangle-exclamation&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;&lt;span class=&#34;td-callout__label&#34;&gt;Warnung&lt;/span&gt;&lt;/div&gt;&#xA;  &lt;div class=&#34;td-callout__body&#34;&gt;&#xA;&lt;p&gt;&lt;strong&gt;Wichtig&lt;/strong&gt;: Führen Sie unbedingt den letzten Schritt der Installationsanleitung aus, um zu prüfen, ob &lt;code&gt;etcd&lt;/code&gt; über Ihren Suchpfad aufrufbar ist.&lt;/p&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Starten Sie &lt;code&gt;etcd&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;div class=&#34;td-code td-code--untitled&#34; id=&#34;td-code-512dbee7-fence-0&#34; data-td-code data-td-code-auto-id&#xA;     data-td-language=&#34;console&#34; data-td-line-count=&#34;3&#34;&gt;&#xA;  &lt;div class=&#34;td-code__viewport&#34; id=&#34;td-code-512dbee7-fence-0-viewport&#34; data-td-code-viewport&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-console&#34; data-lang=&#34;console&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;gp&#34;&gt;$&lt;/span&gt; etcd&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;go&#34;&gt;{&amp;#34;level&amp;#34;:&amp;#34;info&amp;#34;,&amp;#34;ts&amp;#34;:&amp;#34;2021-09-17T09:19:32.783-0400&amp;#34;,&amp;#34;caller&amp;#34;:&amp;#34;etcdmain/etcd.go:72&amp;#34;,&amp;#34;msg&amp;#34;:... }&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;go&#34;&gt;⋮&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;div class=&#34;td-callout td-callout--note&#34; role=&#34;note&#34;&gt;&#xA;  &lt;div class=&#34;td-callout__title&#34;&gt;&lt;i class=&#34;td-callout__icon fa-solid fa-circle-info&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;&lt;span class=&#34;td-callout__label&#34;&gt;Hinweis&lt;/span&gt;&lt;/div&gt;&#xA;  &lt;div class=&#34;td-callout__body&#34;&gt;&#xA;&lt;p&gt;&lt;strong&gt;Hinweis&lt;/strong&gt;: Die Ausgabe von &lt;code&gt;etcd&lt;/code&gt; enthält&#xA;&lt;a href=&#34;https://pgsql.cc/etcd/op-guide/configuration/#logging&#34; hreflang=&#34;en&#34; data-fallback-language=&#34;en&#34;&gt;Protokolle&lt;/a&gt;&#xA; — Protokolle auf Info-Ebene können ignoriert werden.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Quellenangaben und Lizenzierung</title>
        <link>https://pgsql.cc/de/attribution/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/attribution/</guid>
        <description>&lt;p&gt;pgsql.cc veröffentlicht Dokumentationen von sechs Upstream-Projekten erneut. Jede&#xA;Dokumentationsseite endet mit einer einzeiligen Quellenangabe. Sie nennt das&#xA;Werk, auf dem die Seite basiert, dessen Urheberrechtsinhaber und Lizenz und&#xA;verweist auf den zugehörigen Abschnitt dieser Seite.&lt;/p&gt;&#xA;&lt;p&gt;Diese Seite dient als entsprechendes Verzeichnis. Sie dokumentiert, welche&#xA;Inhalte wann aus welcher festgeschriebenen Revision unter welcher Lizenz&#xA;importiert wurden und wo der vollständige Upstream-Hinweis aufbewahrt wird.&lt;/p&gt;&#xA;&lt;div class=&#34;td-callout td-callout--note&#34; role=&#34;note&#34;&gt;&#xA;  &lt;div class=&#34;td-callout__title&#34;&gt;&lt;i class=&#34;td-callout__icon fa-solid fa-circle-info&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;&lt;span class=&#34;td-callout__label&#34;&gt;Hinweis&lt;/span&gt;&lt;/div&gt;&#xA;  &lt;div class=&#34;td-callout__body&#34;&gt;&#xA;&lt;p&gt;Die deutsche Ausgabe enthält die vollständige pgBadger-Sammlung sowie bereits&#xA;übersetzte Seiten aus Patroni, PgBouncer, HAProxy und etcd. Für pgBackRest und&#xA;noch fehlende Einzelseiten führen die Links zur entsprechenden englischen Seite.&lt;/p&gt;</description>
      </item>
    <item>
        <title>Suche</title>
        <link>https://pgsql.cc/de/search/</link>
        <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
        
        <guid>https://pgsql.cc/de/search/</guid>
        <description></description>
      </item>
    
  </channel>
</rss>
