forked from MyBook/zabbix-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
host & item-names filtering added #1
Open
Kurush7
wants to merge
12
commits into
master
Choose a base branch
from
feature/host-and-names-filtering
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2150565
host & item-names filtering added
Kurush7 f043d6f
dockerfile updated
Kurush7 0eeca67
config example updated
Kurush7 92db15a
.rst -> .md convertions
Kurush7 52db623
history.md filename fix
Kurush7 2e500bb
debug codes removed
Kurush7 d06c51f
complex hosts added with additional item_name masks
Kurush7 d107801
readme: filtering logic described
Kurush7 efbaee9
readme: fixes
Kurush7 6921f33
readme: fixes
Kurush7 e52e8c8
metric aggregation field changed: from metric name to item name
Kurush7 e59cfdf
metric aggregation field changes fix
Kurush7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Contributors | ||
------------ | ||
|
||
* Ilya Baryshev <[email protected]> | ||
* Kazakov Kirill <[email protected]> | ||
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,18 +1,18 @@ | ||
FROM python:3.5-slim | ||
FROM python:3.6-slim | ||
MAINTAINER The MyBook Developers <[email protected]> | ||
|
||
RUN groupadd zabbix_exporter && useradd --no-create-home --gid zabbix_exporter zabbix_exporter | ||
COPY . /tmp/zabbix_exporter | ||
WORKDIR /tmp/zabbix_exporter | ||
RUN pip install -e . | ||
|
||
COPY config-example.yml /zabbix_exporter/zabbix_exporter.yml | ||
COPY config-example.yaml /zabbix_exporter/zabbix_exporter.yaml | ||
|
||
EXPOSE 9224 | ||
VOLUME [ "/zabbix_exporter" ] | ||
|
||
USER zabbix_exporter | ||
WORKDIR /zabbix_exporter | ||
ENTRYPOINT [ "/usr/local/bin/zabbix_exporter" ] | ||
CMD [ "--config=/zabbix_exporter/zabbix_exporter.yml", \ | ||
CMD [ "--config=/zabbix_exporter/zabbix_exporter.yaml", \ | ||
"--timeout=10" ] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could also be changed to markdown, since
README.rst
was.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, if to be converted to .md, it is necessary to change corresponding file names in
setup.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
both done