flexmetric 0.4.4__tar.gz → 0.5.1__tar.gz

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.
Files changed (25) hide show
  1. {flexmetric-0.4.4 → flexmetric-0.5.1}/PKG-INFO +1 -1
  2. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/database_connections.py +3 -2
  3. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric.egg-info/PKG-INFO +1 -1
  4. {flexmetric-0.4.4 → flexmetric-0.5.1}/setup.py +1 -1
  5. {flexmetric-0.4.4 → flexmetric-0.5.1}/README.md +0 -0
  6. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/__init__.py +0 -0
  7. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/config/__init__.py +0 -0
  8. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/config/configuration.py +0 -0
  9. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/file_recognition/__init__.py +0 -0
  10. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/file_recognition/exec_file.py +0 -0
  11. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/logging_module/__init__.py +0 -0
  12. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/logging_module/logger.py +0 -0
  13. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/__init__.py +0 -0
  14. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/database_processing.py +0 -0
  15. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/expiring_queue.py +0 -0
  16. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/process_commands.py +0 -0
  17. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/prometheus_agent.py +0 -0
  18. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/queries_execution.py +0 -0
  19. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric/metric_process/views.py +0 -0
  20. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric.egg-info/SOURCES.txt +0 -0
  21. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric.egg-info/dependency_links.txt +0 -0
  22. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric.egg-info/entry_points.txt +0 -0
  23. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric.egg-info/requires.txt +0 -0
  24. {flexmetric-0.4.4 → flexmetric-0.5.1}/flexmetric.egg-info/top_level.txt +0 -0
  25. {flexmetric-0.4.4 → flexmetric-0.5.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flexmetric
3
- Version: 0.4.4
3
+ Version: 0.5.1
4
4
  Summary: A secure flexible Prometheus exporter for commands, databases, functions.
5
5
  Home-page: https://github.com/nikhillingadhal1999/flexmetric
6
6
  Author: Nikhil Lingadhal
@@ -15,7 +15,7 @@ def create_clickhouse_client(db_conf):
15
15
  password = db_conf.get('password', '')
16
16
 
17
17
  client_cert = db_conf.get('client_cert')
18
- client_cert_key = db_conf.get('client_cert_key')
18
+ client_cert_key = db_conf.get('client_key')
19
19
  ca_cert = db_conf.get('ca_cert')
20
20
 
21
21
  secure = bool(client_cert and client_cert_key and ca_cert)
@@ -26,13 +26,14 @@ def create_clickhouse_client(db_conf):
26
26
  'username': username,
27
27
  'password': password,
28
28
  'secure': secure,
29
+ 'verify': False
29
30
  }
30
31
 
31
32
  if secure:
32
33
  settings.update({
33
34
  'client_cert': client_cert,
34
35
  'client_cert_key': client_cert_key,
35
- 'secure_ca': ca_cert,
36
+ 'ca_cert': ca_cert,
36
37
  })
37
38
 
38
39
  client = clickhouse_connect.get_client(**settings)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flexmetric
3
- Version: 0.4.4
3
+ Version: 0.5.1
4
4
  Summary: A secure flexible Prometheus exporter for commands, databases, functions.
5
5
  Home-page: https://github.com/nikhillingadhal1999/flexmetric
6
6
  Author: Nikhil Lingadhal
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="flexmetric",
5
- version="0.4.4",
5
+ version="0.5.1",
6
6
  author="Nikhil Lingadhal",
7
7
  description="A secure flexible Prometheus exporter for commands, databases, functions.",
8
8
  long_description=open("README.md").read(),
File without changes
File without changes