File: control

package info (click to toggle)
graypy 2.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 312 kB
  • sloc: python: 1,175; sh: 114; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Source: graypy
Maintainer: Benjamin Drung <benjamin.drung@cloud.ionos.com>
Section: python
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-all,
               python3-amqp,
               python3-pytest,
               python3-requests,
               python3-setuptools
Standards-Version: 4.7.3
Homepage: https://github.com/severb/graypy
Vcs-Browser: https://salsa.debian.org/python-team/packages/graypy
Vcs-Git: https://salsa.debian.org/python-team/packages/graypy.git

Package: python3-graypy
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${python3:Depends}
Suggests: python3-amqp
Description: Python logging handler that sends messages in GELF (Python 3)
 This package can be used to sent messages to Graylog2 using a custom handler
 for the builtin logging library in the Graylog Extended Log Format (GELF).
 .
 Alternately, GELFRabbitHandler can be used to send messages to RabbitMQ. Your
 Graylog2 server needs to be configured to consume messages via AMQP then. This
 prevents log messages from being lost due to dropped UDP packets (GELFHandler
 sends messages to Graylog2 using UDP). You will need to configure RabbitMQ
 with a 'gelf_log' queue and bind it to the 'logging.gelf' exchange so messages
 are properly routed to a queue that can be consumed by Graylog2 (the queue and
 exchange names may be customized to your liking).
 .
 graypy can be easily integrated into Django's logging settings.
 .
 This is the Python 3 version of the package.