fluent-plugin-dynatrace-radiant 0.1.0 → 0.1.1
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b83e5026a95afbaabec8cd191a2098da1d0b1330183ab2a9ba7fea352466c26
|
|
4
|
+
data.tar.gz: 3481de5e791b40e8eb1084fe88c3f916e26996f99afda8fb1a25dbb134b4cf56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aef4a985c2839024c4e12dca5db15ef732759ab21a6accd64d32402d5d7442998c8c612b9bfee275eb16e6f88c6f62b32f2b392d71b74592a4513ca3f09b0bb7
|
|
7
|
+
data.tar.gz: caced0055d07f68dbc44ef4291320f81165e576d30e4ab4cee3d7ffc6887196d3a9c7e02dbecbf7d11fbd9b737ee53724791e10e440870836a8b09043a862d87
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2026 Radiant Logic, Inc.
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0
|
|
6
|
+
|
|
7
|
+
# Loader for the vendor-neutral plugin name. Fluentd resolves `@type dynatrace`
|
|
8
|
+
# by requiring fluent/plugin/out_dynatrace; the implementation lives in
|
|
9
|
+
# out_dynatrace_radiant, which registers both names.
|
|
10
|
+
require 'fluent/plugin/out_dynatrace_radiant'
|
|
@@ -13,6 +13,11 @@ module Fluent
|
|
|
13
13
|
module Plugin
|
|
14
14
|
class DynatraceRadiantOutput < Output
|
|
15
15
|
Fluent::Plugin.register_output('dynatrace_radiant', self)
|
|
16
|
+
# Also answer to the vendor-neutral name, like the other *-radiant forks do,
|
|
17
|
+
# so `@type dynatrace` works without a loader shim in the consuming image.
|
|
18
|
+
# Fluentd resolves `@type dynatrace` by requiring fluent/plugin/out_dynatrace,
|
|
19
|
+
# which this gem ships as a thin loader for this file.
|
|
20
|
+
Fluent::Plugin.register_output('dynatrace', self)
|
|
16
21
|
|
|
17
22
|
helpers :compat_parameters
|
|
18
23
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-dynatrace-radiant
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Radiant Logic, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -89,6 +89,7 @@ extra_rdoc_files: []
|
|
|
89
89
|
files:
|
|
90
90
|
- LICENSE
|
|
91
91
|
- lib/fluent/plugin/dynatrace_radiant_constants.rb
|
|
92
|
+
- lib/fluent/plugin/out_dynatrace.rb
|
|
92
93
|
- lib/fluent/plugin/out_dynatrace_radiant.rb
|
|
93
94
|
homepage: https://github.com/gnanirahulnutakki/fluent-plugin-dynatrace-radiant
|
|
94
95
|
licenses:
|
|
@@ -96,6 +97,7 @@ licenses:
|
|
|
96
97
|
metadata:
|
|
97
98
|
bug_tracker_uri: https://github.com/gnanirahulnutakki/fluent-plugin-dynatrace-radiant/issues
|
|
98
99
|
source_code_uri: https://github.com/gnanirahulnutakki/fluent-plugin-dynatrace-radiant
|
|
100
|
+
rubygems_mfa_required: 'true'
|
|
99
101
|
post_install_message:
|
|
100
102
|
rdoc_options: []
|
|
101
103
|
require_paths:
|