pytbox 0.0.7__py3-none-any.whl → 0.0.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pytbox might be problematic. Click here for more details.
- pytbox/categraf/build_config.py +13 -2
- pytbox/categraf/instances.toml +16 -0
- pytbox/categraf/jinja2/__init__.py +6 -0
- pytbox/categraf/jinja2/input.cpu/cpu.toml.j2 +5 -0
- pytbox/categraf/jinja2/input.disk/disk.toml.j2 +11 -0
- pytbox/categraf/jinja2/input.diskio/diskio.toml.j2 +6 -0
- pytbox/categraf/jinja2/input.dns_query/dns_query.toml.j2 +0 -0
- pytbox/categraf/jinja2/input.http_response/http_response.toml.j2 +9 -0
- pytbox/categraf/jinja2/input.mem/mem.toml.j2 +5 -0
- pytbox/categraf/jinja2/input.net/net.toml.j2 +11 -0
- pytbox/categraf/jinja2/input.net_response/net_response.toml.j2 +0 -0
- pytbox/categraf/jinja2/input.ping/ping.toml.j2 +11 -0
- pytbox/categraf/jinja2/input.prometheus/prometheus.toml.j2 +12 -0
- pytbox/categraf/jinja2/input.vsphere/vsphere.toml.j2 +211 -0
- {pytbox-0.0.7.dist-info → pytbox-0.0.9.dist-info}/METADATA +2 -2
- {pytbox-0.0.7.dist-info → pytbox-0.0.9.dist-info}/RECORD +19 -6
- {pytbox-0.0.7.dist-info → pytbox-0.0.9.dist-info}/WHEEL +0 -0
- {pytbox-0.0.7.dist-info → pytbox-0.0.9.dist-info}/entry_points.txt +0 -0
- {pytbox-0.0.7.dist-info → pytbox-0.0.9.dist-info}/top_level.txt +0 -0
pytbox/categraf/build_config.py
CHANGED
|
@@ -69,12 +69,23 @@ class BuildConfig:
|
|
|
69
69
|
with open(Path(self.output_dir) / 'input.vsphere' / 'vsphere.toml', 'w', encoding='utf-8') as f:
|
|
70
70
|
f.write(render_data)
|
|
71
71
|
|
|
72
|
+
def http_response(self):
|
|
73
|
+
template = self._get_template('input.http_response/http_response.toml.j2')
|
|
74
|
+
instances = self.instances['http_response']['instance']
|
|
75
|
+
render_data = template.render(instances=instances)
|
|
76
|
+
target_dir = Path(self.output_dir) / 'input.http_response'
|
|
77
|
+
if not target_dir.exists():
|
|
78
|
+
target_dir.mkdir(parents=True, exist_ok=True)
|
|
79
|
+
with open(Path(self.output_dir) / 'input.http_response' / 'http_response.toml', 'w', encoding='utf-8') as f:
|
|
80
|
+
f.write(render_data)
|
|
81
|
+
|
|
72
82
|
def run(self):
|
|
73
83
|
# self.common('cpu')
|
|
74
84
|
# self.common('mem')
|
|
75
85
|
# self.common('net')
|
|
76
86
|
# self.common('disk')
|
|
77
87
|
# self.common('diskio')
|
|
78
|
-
self.vsphere()
|
|
88
|
+
# self.vsphere()
|
|
79
89
|
# self.ping()
|
|
80
|
-
# self.prometheus()
|
|
90
|
+
# self.prometheus()
|
|
91
|
+
self.http_response()
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[ping]
|
|
2
|
+
[[ping.instance]]
|
|
3
|
+
"10.1.1.1" = { name = "x", env = "prod" }
|
|
4
|
+
"10.1.1.2" = { name = "demo02", env = "dev" }
|
|
5
|
+
|
|
6
|
+
[prometheus]
|
|
7
|
+
[[prometheus.urls]]
|
|
8
|
+
"http://10.200.12.202:9100" = { name = "x", env = "prod" }
|
|
9
|
+
|
|
10
|
+
[vsphere]
|
|
11
|
+
[[vsphere.instance]]
|
|
12
|
+
"test" = { vcenter = "https://10.1.1.1/sdk", username = "categraf@vsphere.local", password = "xxx" }
|
|
13
|
+
|
|
14
|
+
[http_response]
|
|
15
|
+
[[http_response.instance]]
|
|
16
|
+
"https://www.baidu.com" = { name = "x", env = "prod" }
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# # collect interval
|
|
2
|
+
# interval = 15
|
|
3
|
+
|
|
4
|
+
# # By default stats will be gathered for all mount points.
|
|
5
|
+
# # Set mount_points will restrict the stats to only the specified mount points.
|
|
6
|
+
# mount_points = ["/"]
|
|
7
|
+
|
|
8
|
+
# Ignore mount points by filesystem type.
|
|
9
|
+
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs", "nsfs", "CDFS", "fuse.juicefs"]
|
|
10
|
+
|
|
11
|
+
ignore_mount_points = ["/boot", "/var/lib/kubelet/pods"]
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{% for instance in instances %}
|
|
2
|
+
{% for target, labels in instance.items() %}
|
|
3
|
+
[[instances]]
|
|
4
|
+
targets = [
|
|
5
|
+
"{{ target }}"
|
|
6
|
+
]
|
|
7
|
+
labels = { {% for k, v in labels.items() %}{% if not loop.first %}, {% endif %}{% if k.isidentifier() %}{{ k }}{% else %}"{{ k }}"{% endif %} = "{{ v }}"{% endfor %} }
|
|
8
|
+
{% endfor %}
|
|
9
|
+
{% endfor %}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# # collect interval
|
|
2
|
+
# interval = 15
|
|
3
|
+
|
|
4
|
+
# # whether collect protocol stats on Linux
|
|
5
|
+
# collect_protocol_stats = false
|
|
6
|
+
|
|
7
|
+
# # setting interfaces will tell categraf to gather these explicit interfaces
|
|
8
|
+
# interfaces = ["eth0"]
|
|
9
|
+
|
|
10
|
+
# enable_loopback_stats=true
|
|
11
|
+
# enable_link_down_stats=true
|
|
File without changes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{% for instance in instances %}
|
|
2
|
+
{% for target, labels in instance.items() %}
|
|
3
|
+
[[instances]]
|
|
4
|
+
targets = [
|
|
5
|
+
"{{ target }}"
|
|
6
|
+
]
|
|
7
|
+
method = "exec"
|
|
8
|
+
count = 3
|
|
9
|
+
labels = { {% for k, v in labels.items() %}{% if not loop.first %}, {% endif %}{% if k.isidentifier() %}{{ k }}{% else %}"{{ k }}"{% endif %} = "{{ v }}"{% endfor %} }
|
|
10
|
+
{% endfor %}
|
|
11
|
+
{% endfor %}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{% for instance in instances %}
|
|
2
|
+
{% for instance, labels in instance.items() %}
|
|
3
|
+
[[instances]]
|
|
4
|
+
urls = [
|
|
5
|
+
"{{ instance }}"
|
|
6
|
+
]
|
|
7
|
+
|
|
8
|
+
url_label_key = "instance"
|
|
9
|
+
url_label_value = "{{ '{{.Host}}' }}"
|
|
10
|
+
labels = { {% for k, v in labels.items() %}{% if not loop.first %}, {% endif %}{% if k.isidentifier() %}{{ k }}{% else %}"{{ k }}"{% endif %} = "{{ v }}"{% endfor %} }
|
|
11
|
+
{% endfor %}
|
|
12
|
+
{% endfor %}
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# # collect interval
|
|
2
|
+
# interval = 15
|
|
3
|
+
|
|
4
|
+
# Read metrics from one or many vCenters
|
|
5
|
+
{% for instance in instances %}
|
|
6
|
+
{% for name, vcenter_info in instance.items() %}
|
|
7
|
+
[[instances]]
|
|
8
|
+
vcenter = "{{ vcenter_info['vcenter'] }}"
|
|
9
|
+
username = "{{ vcenter_info['username'] }}"
|
|
10
|
+
password = "{{ vcenter_info['password'] }}"
|
|
11
|
+
|
|
12
|
+
cluster_metric_exlcude = ["*"]
|
|
13
|
+
## VMs
|
|
14
|
+
## Typical VM metrics (if omitted or empty, all metrics are collected)
|
|
15
|
+
# vm_include = [ "/*/vm/**"] # Inventory path to VMs to collect (by default all are collected)
|
|
16
|
+
# vm_exclude = [] # Inventory paths to exclude
|
|
17
|
+
vm_metric_include = [
|
|
18
|
+
# "config.hardware.numCPU",
|
|
19
|
+
# "config.hardware.memoryMB",
|
|
20
|
+
"cpu.demand.average",
|
|
21
|
+
"cpu.idle.summation",
|
|
22
|
+
"cpu.latency.average",
|
|
23
|
+
"cpu.readiness.average",
|
|
24
|
+
"cpu.ready.summation",
|
|
25
|
+
"cpu.run.summation",
|
|
26
|
+
"cpu.usagemhz.average",
|
|
27
|
+
"cpu.usage.average",
|
|
28
|
+
"cpu.used.summation",
|
|
29
|
+
"cpu.wait.summation",
|
|
30
|
+
"mem.active.average",
|
|
31
|
+
"mem.granted.average",
|
|
32
|
+
"mem.latency.average",
|
|
33
|
+
"mem.swapin.average",
|
|
34
|
+
"mem.swapinRate.average",
|
|
35
|
+
"mem.swapout.average",
|
|
36
|
+
"mem.swapoutRate.average",
|
|
37
|
+
"mem.usage.average",
|
|
38
|
+
"mem.vmmemctl.average",
|
|
39
|
+
"net.bytesRx.average",
|
|
40
|
+
"net.bytesTx.average",
|
|
41
|
+
"net.droppedRx.summation",
|
|
42
|
+
"net.droppedTx.summation",
|
|
43
|
+
"net.usage.average",
|
|
44
|
+
"power.power.average",
|
|
45
|
+
"virtualDisk.numberReadAveraged.average",
|
|
46
|
+
"virtualDisk.numberWriteAveraged.average",
|
|
47
|
+
"virtualDisk.read.average",
|
|
48
|
+
"virtualDisk.readOIO.latest",
|
|
49
|
+
"virtualDisk.throughput.usage.average",
|
|
50
|
+
"virtualDisk.totalReadLatency.average",
|
|
51
|
+
"virtualDisk.totalWriteLatency.average",
|
|
52
|
+
"virtualDisk.write.average",
|
|
53
|
+
"virtualDisk.writeOIO.latest",
|
|
54
|
+
"sys.uptime.latest",
|
|
55
|
+
]
|
|
56
|
+
# vm_metric_exclude = [] ## Nothing is excluded by default
|
|
57
|
+
# vm_instances = true ## true by default
|
|
58
|
+
|
|
59
|
+
## Hosts
|
|
60
|
+
## Typical host metrics (if omitted or empty, all metrics are collected)
|
|
61
|
+
# host_include = [ "/*/host/**"] # Inventory path to hosts to collect (by default all are collected)
|
|
62
|
+
# host_exclude [] # Inventory paths to exclude
|
|
63
|
+
host_metric_include = [
|
|
64
|
+
"cpu.coreUtilization.average",
|
|
65
|
+
"cpu.costop.summation",
|
|
66
|
+
"cpu.demand.average",
|
|
67
|
+
"cpu.idle.summation",
|
|
68
|
+
"cpu.latency.average",
|
|
69
|
+
"cpu.readiness.average",
|
|
70
|
+
"cpu.ready.summation",
|
|
71
|
+
"cpu.swapwait.summation",
|
|
72
|
+
"cpu.usage.average",
|
|
73
|
+
"cpu.usagemhz.average",
|
|
74
|
+
"cpu.used.summation",
|
|
75
|
+
"cpu.utilization.average",
|
|
76
|
+
"cpu.wait.summation",
|
|
77
|
+
"disk.deviceReadLatency.average",
|
|
78
|
+
"disk.deviceWriteLatency.average",
|
|
79
|
+
"disk.kernelReadLatency.average",
|
|
80
|
+
"disk.kernelWriteLatency.average",
|
|
81
|
+
"disk.numberReadAveraged.average",
|
|
82
|
+
"disk.numberWriteAveraged.average",
|
|
83
|
+
"disk.read.average",
|
|
84
|
+
"disk.totalReadLatency.average",
|
|
85
|
+
"disk.totalWriteLatency.average",
|
|
86
|
+
"disk.write.average",
|
|
87
|
+
"mem.active.average",
|
|
88
|
+
"mem.latency.average",
|
|
89
|
+
"mem.state.latest",
|
|
90
|
+
"mem.swapin.average",
|
|
91
|
+
"mem.swapinRate.average",
|
|
92
|
+
"mem.swapout.average",
|
|
93
|
+
"mem.swapoutRate.average",
|
|
94
|
+
"mem.totalCapacity.average",
|
|
95
|
+
"mem.usage.average",
|
|
96
|
+
"mem.vmmemctl.average",
|
|
97
|
+
"net.bytesRx.average",
|
|
98
|
+
"net.bytesTx.average",
|
|
99
|
+
"net.droppedRx.summation",
|
|
100
|
+
"net.droppedTx.summation",
|
|
101
|
+
"net.errorsRx.summation",
|
|
102
|
+
"net.errorsTx.summation",
|
|
103
|
+
"net.usage.average",
|
|
104
|
+
"power.power.average",
|
|
105
|
+
"storageAdapter.numberReadAveraged.average",
|
|
106
|
+
"storageAdapter.numberWriteAveraged.average",
|
|
107
|
+
"storageAdapter.read.average",
|
|
108
|
+
"storageAdapter.write.average",
|
|
109
|
+
"sys.uptime.latest",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
# host_instances = true ## true by default
|
|
114
|
+
# host_include = [] ## Nothing included by default
|
|
115
|
+
# host_exclude = [] ## Nothing excluded by default
|
|
116
|
+
# host_metric_include = [] ## Nothing included by default
|
|
117
|
+
# host_metric_exclude = [] ## Nothing excluded by default
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
## Clusters
|
|
121
|
+
# cluster_include = [ "/*/host/**"] # Inventory path to clusters to collect (by default all are collected)
|
|
122
|
+
# cluster_exclude = [] # Inventory paths to exclude
|
|
123
|
+
# cluster_metric_include = [] ## if omitted or empty, all metrics are collected
|
|
124
|
+
# cluster_metric_exclude = [] ## Nothing excluded by default
|
|
125
|
+
# cluster_instances = false ## false by default
|
|
126
|
+
|
|
127
|
+
## Resource Pools
|
|
128
|
+
# resoucepool_include = [ "/*/host/**"] # Inventory path to datastores to collect (by default all are collected)
|
|
129
|
+
# resoucepool_exclude = [] # Inventory paths to exclude
|
|
130
|
+
# resoucepool_metric_include = [] ## if omitted or empty, all metrics are collected
|
|
131
|
+
# resoucepool_metric_exclude = [] ## Nothing excluded by default
|
|
132
|
+
# resoucepool_instances = false ## false by default
|
|
133
|
+
|
|
134
|
+
## Datastores
|
|
135
|
+
# datastore_include = [ "/*/datastore/**"] # Inventory path to datastores to collect (by default all are collected)
|
|
136
|
+
# datastore_exclude = [] # Inventory paths to exclude
|
|
137
|
+
# datastore_metric_include = [] ## if omitted or empty, all metrics are collected
|
|
138
|
+
# datastore_metric_exclude = [] ## Nothing excluded by default
|
|
139
|
+
# datastore_instances = false ## false by default
|
|
140
|
+
|
|
141
|
+
## Datacenters
|
|
142
|
+
# datacenter_include = [ "/*/host/**"] # Inventory path to clusters to collect (by default all are collected)
|
|
143
|
+
# datacenter_exclude = [] # Inventory paths to exclude
|
|
144
|
+
# datacenter_metric_include = [] ## if omitted or empty, all metrics are collected
|
|
145
|
+
# datacenter_metric_exclude = [ "*" ] ## Datacenters are not collected by default.
|
|
146
|
+
# datacenter_instances = false ## false by default
|
|
147
|
+
|
|
148
|
+
## Plugin Settings
|
|
149
|
+
## separator character to use for measurement and field names (default: "_")
|
|
150
|
+
# separator = "_"
|
|
151
|
+
|
|
152
|
+
## Collect IP addresses? Valid values are "ipv4" and "ipv6"
|
|
153
|
+
# ip_addresses = ["ipv6", "ipv4" ]
|
|
154
|
+
|
|
155
|
+
## When set to true, all samples are sent as integers. This makes the output
|
|
156
|
+
## data types backwards compatible with Telegraf 1.9 or lower. Normally all
|
|
157
|
+
## samples from vCenter, with the exception of percentages, are integer
|
|
158
|
+
## values, but under some conditions, some averaging takes place internally in
|
|
159
|
+
## the plugin. Setting this flag to "false" will send values as floats to
|
|
160
|
+
## preserve the full precision when averaging takes place.
|
|
161
|
+
# use_int_samples = true
|
|
162
|
+
|
|
163
|
+
## Custom attributes from vCenter can be very useful for queries in order to slice the
|
|
164
|
+
## metrics along different dimension and for forming ad-hoc relationships. They are disabled
|
|
165
|
+
## by default, since they can add a considerable amount of tags to the resulting metrics. To
|
|
166
|
+
## enable, simply set custom_attribute_exclude to [] (empty set) and use custom_attribute_include
|
|
167
|
+
## to select the attributes you want to include.
|
|
168
|
+
## By default, since they can add a considerable amount of tags to the resulting metrics. To
|
|
169
|
+
## enable, simply set custom_attribute_exclude to [] (empty set) and use custom_attribute_include
|
|
170
|
+
## to select the attributes you want to include.
|
|
171
|
+
# custom_attribute_include = []
|
|
172
|
+
# custom_attribute_exclude = ["*"]
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
## The number of vSphere 5 minute metric collection cycles to look back for non-realtime metrics. In
|
|
176
|
+
## some versions (6.7, 7.0 and possible more), certain metrics, such as cluster metrics, may be reported
|
|
177
|
+
## with a significant delay (>30min). If this happens, try increasing this number. Please note that increasing
|
|
178
|
+
## it too much may cause performance issues.
|
|
179
|
+
# metric_lookback = 3
|
|
180
|
+
|
|
181
|
+
## number of objects to retrieve per query for realtime resources (vms and hosts)
|
|
182
|
+
## set to 64 for vCenter 5.5 and 6.0 (default: 256)
|
|
183
|
+
# max_query_objects = 256
|
|
184
|
+
|
|
185
|
+
## number of metrics to retrieve per query for non-realtime resources (clusters and datastores)
|
|
186
|
+
## set to 64 for vCenter 5.5 and 6.0 (default: 256)
|
|
187
|
+
# max_query_metrics = 256
|
|
188
|
+
|
|
189
|
+
## number of go routines to use for collection and discovery of objects and metrics
|
|
190
|
+
# collect_concurrency = 1
|
|
191
|
+
# discover_concurrency = 1
|
|
192
|
+
|
|
193
|
+
## the interval before (re)discovering objects subject to metrics collection (default: 300s)
|
|
194
|
+
# object_discovery_interval = "300s"
|
|
195
|
+
|
|
196
|
+
## timeout applies to any of the api request made to vcenter
|
|
197
|
+
# timeout = "60s"
|
|
198
|
+
|
|
199
|
+
## Optional SSL Config
|
|
200
|
+
use_tls = true
|
|
201
|
+
# tls_ca = "/path/to/cafile"
|
|
202
|
+
# tls_cert = "/path/to/certfile"
|
|
203
|
+
# tls_key = "/path/to/keyfile"
|
|
204
|
+
## Use SSL but skip chain & host verification
|
|
205
|
+
insecure_skip_verify = true
|
|
206
|
+
|
|
207
|
+
## The Historical Interval value must match EXACTLY the interval in the daily
|
|
208
|
+
# "Interval Duration" found on the VCenter server under Configure > General > Statistics > Statistic intervals
|
|
209
|
+
# historical_interval = "5m"
|
|
210
|
+
{% endfor %}
|
|
211
|
+
{% endfor %}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytbox
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.9
|
|
4
4
|
Summary: A collection of Python integrations and utilities (Feishu, Dida365, VictoriaMetrics, ...)
|
|
5
5
|
Author-email: mingming hou <houm01@foxmail.com>
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
7
|
Requires-Python: >=3.8
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: requests>=2.0
|
|
@@ -6,7 +6,20 @@ pytbox/onepassword_sa.py,sha256=08iUcYud3aEHuQcUsem9bWNxdXKgaxFbMy9yvtr-DZQ,6995
|
|
|
6
6
|
pytbox/alert/alert_handler.py,sha256=FePPQS4LyGphSJ0QMv0_pLWaXxEqsRlcTKMfUjtsNfk,5048
|
|
7
7
|
pytbox/alert/ping.py,sha256=g36X0U3U8ndZqfpVIcuoxJJ0X5gST3I_IwjTQC1roHA,779
|
|
8
8
|
pytbox/alicloud/sls.py,sha256=UR4GdI86dCKAFI2xt_1DELu7q743dpd3xrYtuNpfC5A,4065
|
|
9
|
-
pytbox/categraf/build_config.py,sha256=
|
|
9
|
+
pytbox/categraf/build_config.py,sha256=xm2HRJzFT0m2NL3eM2Fkl6nfya4GPVlCA3FXUTntUB4,3534
|
|
10
|
+
pytbox/categraf/instances.toml,sha256=zIdSeAvwjpWaogg-yaCdkXxSclYAnOMbQ5HOPgr_qHo,437
|
|
11
|
+
pytbox/categraf/jinja2/__init__.py,sha256=Epm01j8Oujeg4Sk5GgHMvgKIZ6h3BTx-MGmuMgIjUMo,150
|
|
12
|
+
pytbox/categraf/jinja2/input.cpu/cpu.toml.j2,sha256=wxpyLDNvz2ViZK-0a4EgH35Zsg82CwMwijOtT0nBfTI,92
|
|
13
|
+
pytbox/categraf/jinja2/input.disk/disk.toml.j2,sha256=kOWwVF6u7x2huLVa4eBIOhC8R13DXmw0PD9o3HXwEZo,420
|
|
14
|
+
pytbox/categraf/jinja2/input.diskio/diskio.toml.j2,sha256=33E4L1mkUkJOocUsSgpW5zoFCzvx5ogfbnm2jkwzLx8,227
|
|
15
|
+
pytbox/categraf/jinja2/input.dns_query/dns_query.toml.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
pytbox/categraf/jinja2/input.http_response/http_response.toml.j2,sha256=Qp1EOxx7TC7_cH69KqMVwbfCKrD5xbbVO2drVdkvo6s,317
|
|
17
|
+
pytbox/categraf/jinja2/input.mem/mem.toml.j2,sha256=_-qJyE0K_76IMehbN1xq1hi9vY1Y1Jp4TuITzaLjCg4,116
|
|
18
|
+
pytbox/categraf/jinja2/input.net/net.toml.j2,sha256=yodVoT1f7bcuNMFFmAvc7WhORUsTnM92IhpWQHXfY_U,279
|
|
19
|
+
pytbox/categraf/jinja2/input.net_response/net_response.toml.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
pytbox/categraf/jinja2/input.ping/ping.toml.j2,sha256=UCRy_IVoI_FDQxfsDpGS-aZJasFG1sf67ScN9U8YVIo,344
|
|
21
|
+
pytbox/categraf/jinja2/input.prometheus/prometheus.toml.j2,sha256=6ax30L1sAUreojlzf0v26GzOAiheCP0Lj7n5IIjgco0,384
|
|
22
|
+
pytbox/categraf/jinja2/input.vsphere/vsphere.toml.j2,sha256=7SCo8DSh5Uuy-7MeWw-soy6sqblK54k6K2WWSlimELk,8396
|
|
10
23
|
pytbox/cli/__init__.py,sha256=5ID4-oXrMsHFcfDsQeXDYeThPOuQ1Fl2x2kHWfgfOEw,67
|
|
11
24
|
pytbox/cli/main.py,sha256=S-DBp-1d0BCpvZ7jRE3bYmhKSiPpCJHFGsbdVF485BY,322
|
|
12
25
|
pytbox/cli/categraf/__init__.py,sha256=HfhDhWiWEuT5e6fXb6fs7UgoZPwn9WQ1wdFoza2muaI,96
|
|
@@ -32,8 +45,8 @@ pytbox/utils/ping_checker.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,
|
|
|
32
45
|
pytbox/utils/response.py,sha256=kXjlwt0WVmLRam2eu1shzX2cQ7ux4cCQryaPGYwle5g,1247
|
|
33
46
|
pytbox/utils/richutils.py,sha256=OT9_q2Q1bthzB0g1GlhZVvM4ZAepJRKL6a_Vsr6vEqo,487
|
|
34
47
|
pytbox/utils/timeutils.py,sha256=XbK2KB-SVi7agNqoQN7i40wysrZvrGuwebViv1Cw-Ok,20226
|
|
35
|
-
pytbox-0.0.
|
|
36
|
-
pytbox-0.0.
|
|
37
|
-
pytbox-0.0.
|
|
38
|
-
pytbox-0.0.
|
|
39
|
-
pytbox-0.0.
|
|
48
|
+
pytbox-0.0.9.dist-info/METADATA,sha256=I01gnTCJIU2VS3QtFogbc_SBdIVOuarlnygCwxaIR_o,6256
|
|
49
|
+
pytbox-0.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
50
|
+
pytbox-0.0.9.dist-info/entry_points.txt,sha256=YaTOJ2oPjOiv2SZwY0UC-UA9QS2phRH1oMvxGnxO0Js,43
|
|
51
|
+
pytbox-0.0.9.dist-info/top_level.txt,sha256=YADgWue-Oe128ptN3J2hS3GB0Ncc5uZaSUM3e1rwswE,7
|
|
52
|
+
pytbox-0.0.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|