summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2024-02-27 14:20:11 +0200
committerGitHub <noreply@github.com>2024-02-27 14:20:11 +0200
commita9ca70c20e12046d9af6fa0bff916dd616a90e53 (patch)
tree7d5f332e1c11f380df4facbff1a7f1df90affedf
parent2c3dfad53602c39b3d484867b4999af0bad401ad (diff)
go.d.plugin: set max chart id length to 1200 (#17062)
-rw-r--r--src/go/collectors/go.d.plugin/agent/module/job.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/collectors/go.d.plugin/agent/module/job.go b/src/go/collectors/go.d.plugin/agent/module/job.go
index 3bf9a11279..a878a29c29 100644
--- a/src/go/collectors/go.d.plugin/agent/module/job.go
+++ b/src/go/collectors/go.d.plugin/agent/module/job.go
@@ -164,7 +164,7 @@ type Job struct {
}
// NetdataChartIDMaxLength is the chart ID max length. See RRD_ID_LENGTH_MAX in the netdata source code.
-const NetdataChartIDMaxLength = 1000
+const NetdataChartIDMaxLength = 1200
// FullName returns job full name.
func (j Job) FullName() string {