pghero 2.8.0 → 2.8.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of pghero might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +2 -2
- data/app/assets/javascripts/pghero/Chart.bundle.js +22931 -19988
- data/app/assets/javascripts/pghero/chartkick.js +317 -253
- data/app/controllers/pg_hero/home_controller.rb +10 -6
- data/app/views/layouts/pg_hero/application.html.erb +7 -2
- data/app/views/pg_hero/home/_live_queries_table.html.erb +10 -8
- data/app/views/pg_hero/home/index.html.erb +1 -1
- data/app/views/pg_hero/home/relation_space.html.erb +1 -1
- data/app/views/pg_hero/home/show_query.html.erb +3 -3
- data/app/views/pg_hero/home/space.html.erb +4 -4
- data/app/views/pg_hero/home/system.html.erb +4 -4
- data/lib/pghero/database.rb +1 -1
- data/lib/pghero/methods/suggested_indexes.rb +99 -26
- data/lib/pghero/methods/system.rb +31 -5
- data/lib/pghero/version.rb +1 -1
- data/lib/pghero.rb +8 -2
- data/licenses/LICENSE-chart.js.txt +1 -1
- data/licenses/LICENSE-chartjs-adapter-date-fns.txt +9 -0
- data/licenses/LICENSE-chartkick.js.txt +1 -1
- data/licenses/LICENSE-date-fns.txt +20 -0
- metadata +5 -4
- data/licenses/LICENSE-moment.txt +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0ef604cc8c9d99ad4c990aff2b2ee6686dcfe8ba43e1b57a5babab2a4f3613d
|
4
|
+
data.tar.gz: d1d6e6b002e0f0ba4c574ecf9cdc4b6953ea89e03215f05529a217fac1228f8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6999c79d2cf479bce29e06e7dda24e635e95173281ee7231c9af1c777871df3d8b271e38b4adb4baa8ca508aaeeb2f07f8c61ae2cf66ca475e1dc0b6603d34e6
|
7
|
+
data.tar.gz: 12fa2e5b15cb1150c51e4076a6c1c68bf55a429de833ed9809a92c46d18a945766a08b348bf4398d893521cd20e297b9c97b3418c0565a259a3c01a077645252
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## 2.8.3 (2022-05-01)
|
2
|
+
|
3
|
+
- Added support for `google-apis-monitoring_v3`
|
4
|
+
- Added experimental support for Propshaft
|
5
|
+
- Fixed error with walsender queries on live queries page
|
6
|
+
|
7
|
+
## 2.8.2 (2021-12-15)
|
8
|
+
|
9
|
+
- Fixed sorting by name on space page when historical space stats are not enabled
|
10
|
+
- Fixed deprecation warnings with Active Record 7
|
11
|
+
|
12
|
+
## 2.8.1 (2021-03-25)
|
13
|
+
|
14
|
+
- Added support for pg_query 2
|
15
|
+
|
1
16
|
## 2.8.0 (2021-03-14)
|
2
17
|
|
3
18
|
- No longer show walsender in long running queries
|
data/README.md
CHANGED
@@ -8,9 +8,9 @@ A performance dashboard for Postgres
|
|
8
8
|
|
9
9
|
:tangerine: Battle-tested at [Instacart](https://www.instacart.com/opensource)
|
10
10
|
|
11
|
-
[![Build Status](https://github.com/ankane/pghero/workflows/build/badge.svg?branch=master)](https://github.com/ankane/pghero/actions) [![Docker Pulls](https://img.shields.io/docker/pulls/ankane/pghero)](https://hub.docker.com/
|
11
|
+
[![Build Status](https://github.com/ankane/pghero/workflows/build/badge.svg?branch=master)](https://github.com/ankane/pghero/actions) [![Docker Pulls](https://img.shields.io/docker/pulls/ankane/pghero)](https://hub.docker.com/r/ankane/pghero)
|
12
12
|
|
13
|
-
##
|
13
|
+
## Documentation
|
14
14
|
|
15
15
|
PgHero is available as a Docker image, Linux package, and Rails engine.
|
16
16
|
|