- 
                                      
                                        
                                        python3-opentelemetry-propagator-jaeger-1.10.0-5.fc36.noarch
                                      
                                      
                                      This library provides a propagator for the Jaeger format.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-opentelemetry-proto-1.34.1-1.lbn36.noarch
                                      
                                      
                                      This library contains the generated code for OpenTelemetry protobuf data model. The code in the current
package was generated using the v0.17.0 release of opentelemetry-proto.
Installation
pip install opentelemetry-proto
Code Generation
These files were generated automatically from code in opentelemetry-proto.
To regenerate the code, run ../scripts/proto_codegen.sh.
To build against a new release or specific commit of opentelemetry-proto,
update the PROTO_REPO_BRANCH_OR_COMMIT variable in
../scripts/proto_codegen.sh. Then run the script and commit the changes
as well as any fixes needed in the OTLP exporter.
References
OpenTelemetry Project
OpenTelemetry Proto
proto_codegen.sh script
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-opentelemetry-sdk-1.34.1-1.lbn36.noarch
                                      
                                      
                                      Installation
pip install opentelemetry-sdk
References
OpenTelemetry Project
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-opentelemetry-semantic-conventions-0.55b1-1.lbn36.noarch
                                      
                                      
                                      This library contains generated code for the semantic conventions defined by the OpenTelemetry specification.
Installation
pip install opentelemetry-semantic-conventions
Code Generation
These files were generated automatically from code in semconv.
To regenerate the code, run ../scripts/semconv/generate.sh.
To build against a new release or specific commit of opentelemetry-specification,
update the SPEC_VERSION variable in
../scripts/semconv/generate.sh. Then run the script and commit the changes.
References
OpenTelemetry Project
OpenTelemetry Semantic Conventions YAML Definitions
generate.sh script
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-opentelemetry-test-utils-0.55b1-1.lbn36.noarch
                                      
                                      
                                      This package provides internal testing utilities for the OpenTelemetry Python project and provides no stability or quality guarantees.
Please do not use it for anything other than writing or running tests for the OpenTelemetry Python project (github.com/open-telemetry/opentelemetry-python).
References
OpenTelemetry Project
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        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
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        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.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        zabbix-agent-7.2.2-3.lbn36.x86_64
                                      
                                      
                                      Zabbix agent, to be installed on monitored systems
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        zabbix-dbfiles-mysql-7.2.2-3.lbn36.noarch
                                      
                                      
                                      Zabbix database schemas, images, data and patches necessary for creating
and/or updating MySQL databases
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        zabbix-dbfiles-pgsql-7.2.2-3.lbn36.noarch
                                      
                                      
                                      Zabbix database schemas, images, data and patches necessary for creating
and/or updating PostgreSQL databases
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Network Monitoring
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36