Giter VIP home page Giter VIP logo

Comments (3)

marcan avatar marcan commented on August 18, 2024

Sorry, I didn't specify the dependencies tightly enough. subprocess.run requires Python 3.5 or newer. Presumably you have 3.4.

Try this patch. If it works I'll commit it to improve compatibility.

diff --git a/prometheus-pacemaker-exporter.py b/prometheus-pacemaker-exporter.py
index c51253a..300c612 100755
--- a/prometheus-pacemaker-exporter.py
+++ b/prometheus-pacemaker-exporter.py
@@ -31,8 +31,7 @@ def p_bool(b):
     return 1 if b in ('true', '1') else 0
 
 def get_xml():
-    return subprocess.run(["crm_mon", "-X"], check=True,
-                          stdout=subprocess.PIPE).stdout
+    return subprocess.check_output(["crm_mon", "-X"])
 
 class PacemakerCollector(object):
     def __init__(self, args):

from pacemaker-exporter.

imatpro avatar imatpro commented on August 18, 2024

Thanks for quick answer,

Perfect, it's working with python3.4

I have error 500 in localhost:9202 but /metrics page working

but, it's normal metric gauge as format 1.0 or 0.0

ex :

# HELP pacemaker_resource_node Whether a resource is running on each node
# TYPE pacemaker_resource_node gauge
pacemaker_resource_node{id="VIP-Slave2",instance="",node="db-02"} 1.0
pacemaker_resource_node{id="VIP-Slave2",instance="",node="db-01"} 0.0

Thanks you very much Marcan

from pacemaker-exporter.

marcan avatar marcan commented on August 18, 2024

Fixed in de6f837 (the root page should work now too).

from pacemaker-exporter.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.