pinqloq 1.1.2

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/lib/pinqloq.rb ADDED
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "pinqloq/version"
4
+ require_relative "pinqloq/log_level"
5
+ require_relative "pinqloq/log_source_type"
6
+ require_relative "pinqloq/log_failure_reason"
7
+ require_relative "pinqloq/log_entry"
8
+ require_relative "pinqloq/options"
9
+ require_relative "pinqloq/logger"
10
+ require_relative "pinqloq/client"
11
+ require_relative "pinqloq/redaction/redaction_plan"
12
+ require_relative "pinqloq/redaction/redaction"
13
+ require_relative "pinqloq/rack/request_logging"
14
+
15
+ module Pinqloq
16
+ def self.create(**options_kwargs)
17
+ Client.new(Options.new(**options_kwargs))
18
+ end
19
+ end
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pinqloq
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.2
5
+ platform: ruby
6
+ authors:
7
+ - pinqponq
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-09-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rack
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '2.2'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '4.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '2.2'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '4.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: rack-test
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.1'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '2.1'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.13'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '3.13'
61
+ - !ruby/object:Gem::Dependency
62
+ name: webmock
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '3.23'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '3.23'
75
+ description: Pinqloq is a structured logging and log shipping SDK for centralized
76
+ application logs. It captures HTTP request/response logs through a Rack middleware
77
+ (Rails, Sinatra, Hanami, Grape, ...) and sends manual application events to the
78
+ Pinqloq log management platform using in-memory buffering, batching, and HTTPS delivery.
79
+ email:
80
+ executables: []
81
+ extensions: []
82
+ extra_rdoc_files: []
83
+ files:
84
+ - CHANGELOG.md
85
+ - LICENSE
86
+ - README.md
87
+ - lib/pinqloq.rb
88
+ - lib/pinqloq/buffering/callback.rb
89
+ - lib/pinqloq/buffering/log_buffer.rb
90
+ - lib/pinqloq/buffering/log_dispatcher.rb
91
+ - lib/pinqloq/buffering/queued_log.rb
92
+ - lib/pinqloq/client.rb
93
+ - lib/pinqloq/http/ingest_api_client.rb
94
+ - lib/pinqloq/internal/throttled_warn.rb
95
+ - lib/pinqloq/log_entry.rb
96
+ - lib/pinqloq/log_failure_reason.rb
97
+ - lib/pinqloq/log_level.rb
98
+ - lib/pinqloq/log_source_type.rb
99
+ - lib/pinqloq/logger.rb
100
+ - lib/pinqloq/options.rb
101
+ - lib/pinqloq/rack/captured_body.rb
102
+ - lib/pinqloq/rack/path_match.rb
103
+ - lib/pinqloq/rack/request_logging.rb
104
+ - lib/pinqloq/redaction/redaction.rb
105
+ - lib/pinqloq/redaction/redaction_plan.rb
106
+ - lib/pinqloq/version.rb
107
+ homepage: https://github.com/pinqponq/pinqloq-ruby-sdk
108
+ licenses:
109
+ - MIT
110
+ metadata:
111
+ source_code_uri: https://github.com/pinqponq/pinqloq-ruby-sdk
112
+ changelog_uri: https://github.com/pinqponq/pinqloq-ruby-sdk/CHANGELOG.md
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '3.1'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubygems_version: 3.5.22
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: Structured logging and log shipping SDK for Rack applications.
132
+ test_files: []