Skip to content

feat!: Dashboards v3 #141

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

Merged
merged 36 commits into from
Aug 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a274a9c
ci: Move Policy v2 from examples to tests
tembleking Aug 12, 2020
d3d3f10
chore: Expand imports
tembleking Aug 12, 2020
0cbdfe3
ci: Add test to remove all policies
tembleking Aug 12, 2020
e981b1e
ci: Add coverage for tests
tembleking Aug 12, 2020
78dbd55
ci: Add error tests for policy v2
tembleking Aug 12, 2020
0de4712
ci: Add monitor alert tests
tembleking Aug 12, 2020
3785d89
ci: Add Dashboard V2 tests
tembleking Aug 12, 2020
4bd08d1
ci: Test with mamba while the agent is running for capture creation
tembleking Aug 14, 2020
cd88cca
ci: Add Captures v1 tests
tembleking Aug 14, 2020
dafe4f6
ci: Increase the poll time to 1 minute and add Docker cache
tembleking Aug 14, 2020
6f9cd6d
ci: Remove Monitor API script test
tembleking Aug 14, 2020
94fdf7c
ci: Add virtualenv folder to cache
tembleking Aug 14, 2020
b8b119c
ci: Rename capture in tests
tembleking Aug 14, 2020
1eee027
ci: Remove .travis.yml
tembleking Aug 14, 2020
6d48c4e
ci: Increase the poll time to 5 minute
tembleking Aug 14, 2020
c36183b
ci: Remove docker cache due to permission errors
tembleking Aug 14, 2020
0bacae1
feat: Split Monitor client into EventsClient clients
tembleking Aug 17, 2020
37c981a
ci: Move event_spec tests to events_v2_spec
tembleking Aug 17, 2020
07cf8a5
ci: Add Agent tests
tembleking Aug 17, 2020
0794d0f
fix(ci): Wait for config changes to be propagated in the agents
tembleking Aug 17, 2020
d7dc0d2
feat: Add list, add, delete and create default tests for policies v1
vicenteherrera Aug 17, 2020
036865e
fix(ci): Increase wait time after changing config
tembleking Aug 17, 2020
835b8da
feat: Add test listing policies priorities for policies v1
vicenteherrera Aug 17, 2020
806ce2c
feat: Add test to get a policy for policies v1
vicenteherrera Aug 17, 2020
389d983
feat: Add update policy test for policies v1
vicenteherrera Aug 17, 2020
79ea57f
refactor: Changed delete all policies test to use a single delete_all…
vicenteherrera Aug 17, 2020
2c30c1a
chore(ci): Deactivate Capture tests
tembleking Aug 17, 2020
eb7254e
feat: Add change evaluation order of policies test for policies v1
vicenteherrera Aug 17, 2020
8cab274
fix: Add missing import to change the evaluation order of policies te…
vicenteherrera Aug 17, 2020
e73b96f
feat: Add get policy by id test for policies v1
vicenteherrera Aug 17, 2020
10d83d7
feat: Add delete single policy by id test for policies v1
vicenteherrera Aug 17, 2020
5e16b09
feat: Add delete single policy by name test for policies v1
vicenteherrera Aug 17, 2020
2011560
Merge branch 'master' into ci-move-examples-to-tests
tembleking Aug 18, 2020
6699478
feat!: Add Dashboards v3 client and split Monitor
tembleking Aug 19, 2020
608298a
Merge branch 'master' into feat-dashboards-v3
tembleking Aug 19, 2020
2946a98
chore: Add tatsu as dependency in setup.py
tembleking Aug 19, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ coverage = "*"
requests = "*"
pyaml = "*"
requests-toolbelt = "*"
tatsu = "*"

[requires]
python_version = "3.8"
16 changes: 12 additions & 4 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

840 changes: 15 additions & 825 deletions sdcclient/_monitor.py

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions sdcclient/monitor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from ._dashboards_v3 import DashboardsClientV3
from ._dashboards_v2 import DashboardsClientV2
from ._events_v1 import EventsClientV1
from ._events_v2 import EventsClientV2
Loading