Skip to content

Commit a10076e

Browse files
Bump github.com/nginxinc/telemetry-exporter from 0.1.0 to 0.1.1 (#2386)
* Bump github.com/nginxinc/telemetry-exporter from 0.1.0 to 0.1.1 Bumps [github.com/nginxinc/telemetry-exporter](https://github.com/nginxinc/telemetry-exporter) from 0.1.0 to 0.1.1. - [Release notes](https://github.com/nginxinc/telemetry-exporter/releases) - [Changelog](https://github.com/nginxinc/telemetry-exporter/blob/main/release-process.md) - [Commits](nginx/telemetry-exporter@v0.1.0...v0.1.1) --- updated-dependencies: - dependency-name: github.com/nginxinc/telemetry-exporter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Update generated files --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Luca Comellini <[email protected]>
1 parent 5ca03e4 commit a10076e

File tree

5 files changed

+6
-14
lines changed

5 files changed

+6
-14
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1
1111
github.com/nginxinc/nginx-plus-go-client v1.2.2
1212
github.com/nginxinc/nginx-prometheus-exporter v1.3.0
13-
github.com/nginxinc/telemetry-exporter v0.1.0
13+
github.com/nginxinc/telemetry-exporter v0.1.1
1414
github.com/onsi/ginkgo/v2 v2.20.0
1515
github.com/onsi/gomega v1.34.1
1616
github.com/prometheus/client_golang v1.19.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ github.com/nginxinc/nginx-plus-go-client v1.2.2 h1:sl7HqNDDZq2EVu0eQQVoZ6PKYGa4h
101101
github.com/nginxinc/nginx-plus-go-client v1.2.2/go.mod h1:n8OFLzrJulJ2fur28Cwa1Qp5DZNS2VicLV+Adt30LQ4=
102102
github.com/nginxinc/nginx-prometheus-exporter v1.3.0 h1:1JtdxsZH0Uwhu1nL/j/QyOXytP5V5j68AEo2X+DFWb0=
103103
github.com/nginxinc/nginx-prometheus-exporter v1.3.0/go.mod h1:hXoH+X6aIKSyQuO6QTIiPKH3eZyxqy/wW8GYiE3dflU=
104-
github.com/nginxinc/telemetry-exporter v0.1.0 h1:wF71jYx4PQpHv5ML0Ba4qN/o37ZNLfiHENXMZsVO7EQ=
105-
github.com/nginxinc/telemetry-exporter v0.1.0/go.mod h1:Hcb/Fz6TvTZLxF/p9Fa1YDmdScnZ9Azdl8isO4Hd9v4=
104+
github.com/nginxinc/telemetry-exporter v0.1.1 h1:6wRjxra+6997GtVrkRjq5CqJyreQTbwdtmRGyqw7VyY=
105+
github.com/nginxinc/telemetry-exporter v0.1.1/go.mod h1:aNsh1EGGlozhvc3e8lnBfz1V+kfsknHZaUNscHV+yLo=
106106
github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE=
107107
github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU=
108108
github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE=

internal/mode/static/telemetry/data.avdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@namespace("gateway.nginx.org") protocol NGFProductTelemetry {
2+
/** Data is the telemetry data for the product. */
23
@df_datatype("ngf-product-telemetry") record Data {
34
/** The field that identifies what type of data this is. */
45
string dataType;

internal/mode/static/telemetry/data_attributes_generated.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
1-
21
package telemetry
2+
33
/*
44
This is a generated file. DO NOT EDIT.
55
*/
66

77
import (
88
"go.opentelemetry.io/otel/attribute"
99

10-
1110
ngxTelemetry "github.com/nginxinc/telemetry-exporter/pkg/telemetry"
12-
1311
)
1412

1513
func (d *Data) Attributes() []attribute.KeyValue {
1614
var attrs []attribute.KeyValue
1715
attrs = append(attrs, attribute.String("dataType", "ngf-product-telemetry"))
18-
19-
2016
attrs = append(attrs, attribute.String("ImageSource", d.ImageSource))
2117
attrs = append(attrs, d.Data.Attributes()...)
2218
attrs = append(attrs, attribute.StringSlice("FlagNames", d.FlagNames))
2319
attrs = append(attrs, attribute.StringSlice("FlagValues", d.FlagValues))
2420
attrs = append(attrs, d.NGFResourceCounts.Attributes()...)
2521
attrs = append(attrs, attribute.Int64("NGFReplicaCount", d.NGFReplicaCount))
26-
2722

2823
return attrs
2924
}

internal/mode/static/telemetry/ngfresourcecounts_attributes_generated.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1-
21
package telemetry
2+
33
/*
44
This is a generated file. DO NOT EDIT.
55
*/
66

77
import (
88
"go.opentelemetry.io/otel/attribute"
99

10-
1110
ngxTelemetry "github.com/nginxinc/telemetry-exporter/pkg/telemetry"
12-
1311
)
1412

1513
func (d *NGFResourceCounts) Attributes() []attribute.KeyValue {
1614
var attrs []attribute.KeyValue
17-
1815
attrs = append(attrs, attribute.Int64("GatewayCount", d.GatewayCount))
1916
attrs = append(attrs, attribute.Int64("GatewayClassCount", d.GatewayClassCount))
2017
attrs = append(attrs, attribute.Int64("HTTPRouteCount", d.HTTPRouteCount))
@@ -27,7 +24,6 @@ func (d *NGFResourceCounts) Attributes() []attribute.KeyValue {
2724
attrs = append(attrs, attribute.Int64("RouteAttachedClientSettingsPolicyCount", d.RouteAttachedClientSettingsPolicyCount))
2825
attrs = append(attrs, attribute.Int64("ObservabilityPolicyCount", d.ObservabilityPolicyCount))
2926
attrs = append(attrs, attribute.Int64("NginxProxyCount", d.NginxProxyCount))
30-
3127

3228
return attrs
3329
}

0 commit comments

Comments
 (0)