Skip to content
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

Feat/nodes stats 1160 #1169

Merged
merged 20 commits into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8550d14
feat(hapi): avoid requesting duplicate endpoints
Torresmorah Mar 7, 2023
4e82091
chore(webapp): use endpoint updated time instead of local time
Torresmorah Mar 7, 2023
9bc804f
perf(hapi): improve endpoints health check
Torresmorah Mar 8, 2023
000430c
feat(hasura): add health_check_history table
Torresmorah Mar 8, 2023
5771ae5
feat(hasura): add endpoints check history table
Torresmorah Mar 10, 2023
e90c089
feat(hapi): add service to manage health check history
Torresmorah Mar 10, 2023
233e5c5
feat(hasura): add check history by endpoint view
Torresmorah Mar 15, 2023
432b9c9
feat(hasura): add select permissions to guest role
Torresmorah Mar 15, 2023
bff30f6
feat(webapp): add endpoints stats view
Torresmorah Mar 20, 2023
b61ba39
feat(webapp): add internationalization for endpoints stats view
Torresmorah Mar 20, 2023
d18cde4
fix(hasura): remove check_history_by_endpoint view
Torresmorah Mar 22, 2023
f479235
fix(hasura): change sum_total_time data type
Torresmorah Mar 22, 2023
239777a
feat(webapp): add link to endpoints stats in the endpoints list
Torresmorah Mar 22, 2023
b6b0535
refactor(webapp): fix sintax error and refactor code
Torresmorah Mar 22, 2023
7ec3603
refactor(hapi): use flatMap and remove unneeded order by
Torresmorah Mar 22, 2023
97e9747
feat(hapi): fix flatMap
Torresmorah Mar 23, 2023
be5aa73
feat(webapp): use Autocomplete component
Torresmorah Mar 23, 2023
a9057f1
[CodeFactor] Apply fixes
code-factor Mar 23, 2023
5757924
fix(hapi): apply fixes in not defined
Torresmorah Mar 23, 2023
b74a61f
fix(hapi): apply fixes in wrong format
Torresmorah Mar 23, 2023
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
Prev Previous commit
Next Next commit
feat(hasura): add select permissions to guest role
  • Loading branch information
Torresmorah committed Mar 15, 2023
commit 432b9c9a3f8b4927204d30cbd4d84dc4344482bf
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
table:
name: check_history_by_endpoint
schema: public
select_permissions:
- role: guest
permission:
columns:
- value
- date
- avg_time
- availability
- producer_id
- total_checks
filter: {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
table:
name: endpoints_check_history
schema: public
select_permissions:
- role: guest
permission:
columns:
- value
- date
- producer_id
- successful_checks
- sum_total_time
- id
filter: {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
table:
name: health_check_history
schema: public
select_permissions:
- role: guest
permission:
columns:
- date
- total_checks
- created_at
- updated_at
- id
filter: {}