Commit 142115a8 authored by Ramon Nou's avatar Ramon Nou
Browse files

Prometheus deps

parent 0fbce2ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ RUN apt-get update && \
		python3-dev \
		python3-venv \
		python3-setuptools \
    libnuma-dev libyaml-dev \
    libnuma-dev libyaml-dev libcurl4-openssl-dev \
    procps && \
    python3 -m pip install --upgrade pip && \
    rm -rf /var/lib/apt/lists/* && \
+1 −2
Original line number Diff line number Diff line
@@ -182,7 +182,6 @@ private:
    std::map<SIZE_OP, Summary*> SIZE_Prometheus;



public:
    /**
     * @brief Starts the Stats module and initializes structures
+2 −1
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@ wgetdeps=(
    ["rocksdb"]="6.26.1"
    ["psm2"]="11.2.185"
    ["json-c"]="0.15-20200726"
    ["curl"]="7.82.0"
)

# Dependencies that must be cloned
@@ -69,7 +70,7 @@ clonedeps_patches=(
# Ordering that MUST be followed when downloading
order=(
    "lz4" "capstone" "json-c" "psm2" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date"
    "agios" "parallax"
    "agios" "curl" "parallax"
)

# Extra arguments passed to the installation script. As such, they can
+2 −1
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ comment="Dependencies required by the CI"
wgetdeps=(
    ["argobots"]="1.1"
    ["rocksdb"]="6.26.1"
    ["prometheus-cpp"]="v1.0.0"
    )

# Dependencies that must be cloned
@@ -65,7 +66,7 @@ clonedeps_patches=(
# Ordering that MUST be followed when downloading
order=(
    "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept"
    "date" "agios" "parallax" 
    "date" "agios" "parallax" "prometheus-cpp" 
)

# Extra arguments passed to the installation script. As such, they can
+2 −1
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ wgetdeps=(
    ["argobots"]="1.1"
    ["rocksdb"]="6.26.1"
    ["json-c"]="0.15-20200726"
    ["prometheus-cpp"]="v1.0.0"
)

# Dependencies that must be cloned
@@ -65,7 +66,7 @@ clonedeps_patches=(

# Ordering that MUST be followed when downloading
order=(
    "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date"
    "lz4" "capstone" "json-c" "libfabric" "mercury" "argobots" "margo" "rocksdb" "syscall_intercept" "date" "prometheus-cpp"
)

# Extra arguments passed to the installation script. As such, they can
Loading