aws_sqs_moniter 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws_sqs_moniter/version.rb +1 -1
- data/lib/generators/aws_sqs_moniter/templates/create_dead_letters_migration.rb +8 -0
- data/lib/generators/aws_sqs_moniter/templates/create_processed_messages_migration.rb +8 -0
- data/lib/generators/aws_sqs_moniter/templates/create_published_messages_migration.rb +3 -1
- metadata +1 -2
- data/lib/aws_sqs_moniter/version.rb~ +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b2a948d7745f4518c5e686e0f4835a80986ede9
|
4
|
+
data.tar.gz: a7e2506908904d6abeb2d502a01acdd61658b31b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c209b6f05c697d8af7b172eadea24e86ab06f899fa411894452e1f3954ef759882008a573d7061fe1c6f57464e59c3eb83b337e6b79b914844cb0ca3141d177d
|
7
|
+
data.tar.gz: a5930fa101feace53418b520b48310e9fca9c80c83290a084f5b643fee7bae60e6b960fe61d2a67261bb7e2852aa3e16951d5aecf51755f077b884c8958355f2
|
@@ -6,6 +6,14 @@ class CreateDeadLetters < ActiveRecord::Migration
|
|
6
6
|
t.string :sqs_id, null: false, index: { unique: true }
|
7
7
|
t.string :message_id, null: false, index: true
|
8
8
|
t.string :message, null: false
|
9
|
+
|
10
|
+
t.string :topic, null: false
|
11
|
+
|
12
|
+
t.integer :attempts, null: false, default: 0
|
13
|
+
t.datetime :attempted_at
|
14
|
+
|
15
|
+
t.string :processed_by
|
16
|
+
t.datetime :processed_at
|
9
17
|
end
|
10
18
|
end
|
11
19
|
end
|
@@ -6,6 +6,14 @@ class CreateProcessedMessages < ActiveRecord::Migration
|
|
6
6
|
t.string :message_id, null: false
|
7
7
|
t.string :queue, null: false
|
8
8
|
t.string :message, null: false
|
9
|
+
|
10
|
+
t.string :topic, null: false
|
11
|
+
|
12
|
+
t.integer :attempts, null: false, default: 0
|
13
|
+
t.datetime :attempted_at
|
14
|
+
|
15
|
+
t.string :processed_by
|
16
|
+
t.datetime :processed_at
|
9
17
|
|
10
18
|
t.index %i(message_id queue), unique: true
|
11
19
|
end
|
@@ -6,7 +6,9 @@ class CreatePublishedMessages < ActiveRecord::Migration
|
|
6
6
|
t.string :topic, null: false
|
7
7
|
t.string :message, null: false
|
8
8
|
t.string :response
|
9
|
-
|
9
|
+
t.string :sqs_id, null: false, index: { unique: true }
|
10
|
+
t.string :message_id, null: false, index: true
|
11
|
+
|
10
12
|
t.integer :attempts, null: false, default: 0
|
11
13
|
t.datetime :attempted_at
|
12
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws_sqs_moniter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- saikiranmothe
|
@@ -237,7 +237,6 @@ files:
|
|
237
237
|
- lib/aws_sqs_moniter/middleware/server/active_record/idempotence.rb
|
238
238
|
- lib/aws_sqs_moniter/middleware/server/active_record/connection_pool.rb
|
239
239
|
- lib/aws_sqs_moniter/configuration.rb
|
240
|
-
- lib/aws_sqs_moniter/version.rb~
|
241
240
|
- lib/aws_sqs_moniter/configuration/redrive_policy_configuration.rb
|
242
241
|
- lib/aws_sqs_moniter/configuration/validatable.rb
|
243
242
|
- lib/aws_sqs_moniter/configuration/queue_configuration.rb
|