pqa 1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/pqa +9 -0
- data/etc/CHANGELOG +78 -0
- data/etc/LICENSE +31 -0
- data/etc/README +15 -0
- data/lib/pqa.rb +1173 -0
- data/sample/mysql_sample.log +495 -0
- data/sample/pglog_sample.log +2980 -0
- data/sample/syslog_sample.log +2437 -0
- metadata +52 -0
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: pqa
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: "1.6"
|
7
|
+
date: 2005-11-27 00:00:00 -05:00
|
8
|
+
summary: PQA is a SQL query analyzer
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email:
|
12
|
+
- tom@infoether.com
|
13
|
+
- tfavier@gmail.com
|
14
|
+
homepage: http://pqa.projects.postgresql.org/
|
15
|
+
rubyforge_project: pqa
|
16
|
+
description: "PQA does practical query analysis; it produces HTML reports on slowest queries,
|
17
|
+
most frequent queries, queries by type (select/insert/update/delete), and all
|
18
|
+
that sort of thing for PostgreSQL and MySQL database logs."
|
19
|
+
autorequire: pqa
|
20
|
+
default_executable: pqa
|
21
|
+
bindir: bin
|
22
|
+
has_rdoc: false
|
23
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
24
|
+
requirements:
|
25
|
+
-
|
26
|
+
- ">"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: 0.0.0
|
29
|
+
version:
|
30
|
+
platform: ruby
|
31
|
+
signing_key:
|
32
|
+
cert_chain:
|
33
|
+
authors:
|
34
|
+
-
|
35
|
+
- Tom Copeland
|
36
|
+
- Thomas Favier
|
37
|
+
files:
|
38
|
+
- lib/pqa.rb
|
39
|
+
- etc/README
|
40
|
+
- etc/CHANGELOG
|
41
|
+
- etc/LICENSE
|
42
|
+
- sample/pglog_sample.log
|
43
|
+
- sample/syslog_sample.log
|
44
|
+
- sample/mysql_sample.log
|
45
|
+
test_files: []
|
46
|
+
rdoc_options: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
executables:
|
49
|
+
- pqa
|
50
|
+
extensions: []
|
51
|
+
requirements: []
|
52
|
+
dependencies: []
|