-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from niaid/dev
Add presets feature
- Loading branch information
Showing
32 changed files
with
1,760 additions
and
1,677 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: "3" | ||
|
||
tasks: | ||
jupyter: | ||
cmds: | ||
- poetry run jupyter nbconvert docs/API_usage.ipynb --to markdown --output API_usage.md | ||
serve_docs: | ||
deps: | ||
- jupyter | ||
cmds: | ||
- poetry run mkdocs serve | ||
build_docs: | ||
deps: | ||
- jupyter | ||
cmds: | ||
- poetry run mkdocs build | ||
deploy_docs: | ||
deps: | ||
- jupyter | ||
cmds: | ||
- poetry run mkdocs gh-deploy |
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,28 +0,0 @@ | ||
from ._version import __version__ | ||
from .cloudwatcher import CloudWatcher | ||
from .logwatcher import LogWatcher | ||
from .metric_handlers import ( | ||
ResponseLogger, | ||
ResponseSaver, | ||
TimedMetricCsvSaver, | ||
TimedMetricJsonSaver, | ||
TimedMetricLogger, | ||
TimedMetricPlotter, | ||
TimedMetricSummarizer, | ||
) | ||
from .metricwatcher import MetricWatcher | ||
|
||
__classes__ = [ | ||
"CloudWatcher", | ||
"MetricWatcher", | ||
"LogWatcher", | ||
"ResponseLogger", | ||
"ResponseSaver", | ||
"TimedMetricCsvSaver", | ||
"TimedMetricJsonSaver", | ||
"TimedMetricLogger", | ||
"TimedMetricPlotter", | ||
"TimedMetricSummarizer", | ||
] | ||
|
||
__all__ = __classes__ + ["__version__"] | ||
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,7 +1,7 @@ | ||
import logging | ||
import sys | ||
|
||
from .cli import main | ||
from cloudwatcher.cli import main | ||
|
||
if __name__ == "__main__": | ||
|
||
|
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 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.