You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage asterisk-calendar-18.4.0-1.fc36.5.x86_64
Calendar applications for Asterisk.
RPMPackage asterisk-alsa-18.4.0-1.fc36.5.x86_64
Modules for Asterisk that use Alsa sound drivers.
RPMPackage asterisk-18.4.0-1.fc36.5.x86_64
Asterisk is a complete PBX in software. It runs on Linux and provides all of the features you would expect from a PBX and more. Asterisk does voice over IP in three protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware.
RPMPackage zabbix-web-pgsql-7.2.2-3.lbn36.noarch
Zabbix web frontend for PostgreSQL
RPMPackage zabbix-web-mysql-7.2.2-3.lbn36.noarch
Zabbix web frontend for MySQL
RPMPackage zabbix-web-7.2.2-3.lbn36.noarch
The php frontend to display the Zabbix web interface.
RPMPackage zabbix-server-pgsql-7.2.2-3.lbn36.x86_64
Zabbix server compiled to use PostgreSQL
RPMPackage zabbix-server-mysql-7.2.2-3.lbn36.x86_64
Zabbix server compiled to use MySQL
RPMPackage zabbix-server-7.2.2-3.lbn36.noarch
Zabbix server common files
RPMPackage zabbix-selinux-7.2.2-3.lbn36.noarch
Custom SELinux policy module
RPMPackage zabbix-proxy-sqlite3-7.2.2-3.lbn36.x86_64
Zabbix proxy compiled to use SQLite
RPMPackage zabbix-proxy-pgsql-7.2.2-3.lbn36.x86_64
Zabbix proxy compiled to use PostgreSQL
RPMPackage zabbix-proxy-mysql-7.2.2-3.lbn36.x86_64
Zabbix proxy compiled to use MySQL
RPMPackage zabbix-proxy-7.2.2-3.lbn36.noarch
Zabbix proxy commmon files
RPMPackage zabbix-dbfiles-sqlite3-7.2.2-3.lbn36.noarch
Zabbix database schemas and patches necessary for creating and/or updating SQLite databases
RPMPackage zabbix-dbfiles-pgsql-7.2.2-3.lbn36.noarch
Zabbix database schemas, images, data and patches necessary for creating and/or updating PostgreSQL databases
RPMPackage zabbix-dbfiles-mysql-7.2.2-3.lbn36.noarch
Zabbix database schemas, images, data and patches necessary for creating and/or updating MySQL databases
RPMPackage zabbix-agent-7.2.2-3.lbn36.x86_64
Zabbix agent, to be installed on monitored systems
RPMPackage zabbix-7.2.2-3.lbn36.x86_64
Zabbix is software that monitors numerous parameters of a network and the health and integrity of servers. Zabbix uses a flexible notification mechanism that allows users to configure e-mail based alerts for virtually any event. This allows a fast reaction to server problems. Zabbix offers excellent reporting and data visualization features based on the stored data. This makes Zabbix ideal for capacity planning. Zabbix supports both polling and trapping. All Zabbix reports and statistics, as well as configuration parameters are accessed through a web-based front end. A web-based front end ensures that the status of your network and the health of your servers can be assessed from any location. Properly configured, Zabbix can play an important role in monitoring IT infrastructure. This is equally true for small organizations with a few servers and for large companies with a multitude of servers.
RPMPackage python3-opentelemetry-util-http-0.55b1-1.lbn36.noarch
This library provides ASGI, WSGI middleware and other HTTP-related functionality that is common to instrumented web frameworks (such as Django, Starlette, FastAPI, etc.) to track requests timing through OpenTelemetry. Installation pip install opentelemetry-util-http Usage (Quart) from quart import Quart from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware app = Quart(__name__) app.asgi_app = OpenTelemetryMiddleware(app.asgi_app) @app.route("/") async def hello(): return "Hello!" if __name__ == "__main__": app.run(debug=True) Usage (Django 3.0) Modify the application’s asgi.py file as shown below. import os from django.core.asgi import get_asgi_application from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'asgi_example.settings') application = get_asgi_application() application = OpenTelemetryMiddleware(application) Usage (Raw ASGI) from opentelemetry.instrumentation.asgi import Op