-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored Prometheus plugin files into plugins/prometheus folder, use BMQ_TARGET_PROMETHEUS_NEEDED var, fixed test. --------- Signed-off-by: Aleksandr Ivanov <[email protected]>
- Loading branch information
1 parent
10f1e68
commit b24cfe4
Showing
30 changed files
with
187 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1 @@ | ||
# plugins | ||
# ------------ | ||
|
||
if (NOT BMQ_TARGET_PLUGINS_NEEDED) | ||
return() | ||
endif() | ||
|
||
find_package( PkgConfig REQUIRED ) | ||
|
||
bmq_add_plugin( plugins ) | ||
add_subdirectory( "prometheus" ) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Prometheus plugin | ||
# ------------ | ||
|
||
if (NOT BMQ_TARGET_PROMETHEUS_NEEDED ) | ||
return() | ||
endif() | ||
|
||
find_package( PkgConfig REQUIRED ) | ||
|
||
bmq_add_plugin( prometheus ) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
prometheus_entry | ||
prometheus_pluginlibrary | ||
prometheus_prometheusstatconsumer | ||
prometheus_version | ||
prometheus_versiontag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.