FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
netdata/python.d/exim.chart.py at master · vvoody/netdata · GitHub
vvoody
/
netdata
Public
forked from
netdata/netdata
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
netdata
/
python.d
/
exim.chart.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (32 loc) · 1.09 KB
Breadcrumbs
netdata
/
python.d
/
exim.chart.py
Copy path
File metadata and controls
39 lines (32 loc) · 1.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
36
37
38
39
# -*- coding: utf-8 -*-
# Description: exim netdata python.d module
# Author: Pawel Krupa (paulfantom)
from
bases
.
FrameworkServices
.
ExecutableService
import
ExecutableService
# default module values (can be overridden per job in `config`)
# update_every = 2
priority
=
60000
retries
=
60
# charts order (can be overridden if you want less charts, or different order)
ORDER
=
[
'qemails'
]
CHARTS
=
{
'qemails'
: {
'options'
: [
None
,
"Exim Queue Emails"
,
"emails"
,
'queue'
,
'exim.qemails'
,
'line'
],
'lines'
: [
[
'emails'
,
None
,
'absolute'
]
]}
}
class
Service
(
ExecutableService
):
def
__init__
(
self
,
configuration
=
None
,
name
=
None
):
ExecutableService
.
__init__
(
self
,
configuration
=
configuration
,
name
=
name
)
self
.
command
=
"exim -bpc"
self
.
order
=
ORDER
self
.
definitions
=
CHARTS
def
_get_data
(
self
):
"""
Format data received from shell command
:return: dict
"""
try
:
return
{
'emails'
:
int
(
self
.
_get_raw_data
()[
0
])}
except
(
ValueError
,
AttributeError
):
return
None
Back
|
FazBrowse Home
|
New Git URL