-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend logstash.node metricset for logstash_state stack monitoring da…
…ta (#11506) * WIP: metricset for logstash_state * Remove debugging statement * Exclude internal pipelines * Index new docs only if pipelien ephemeral ID has changed * Create one doc per ES cluster, if cluster_uuid(s) are given * Add graph=true query param * Extract cluster_uuids field so it's not indexed
- Loading branch information
1 parent
adb3e12
commit bd2660d
Showing
3 changed files
with
163 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package node | ||
|
||
import ( | ||
"time" | ||
|
||
"github.com/elastic/beats/libbeat/common" | ||
"github.com/elastic/beats/metricbeat/helper/elastic" | ||
"github.com/elastic/beats/metricbeat/mb" | ||
"github.com/elastic/beats/metricbeat/module/logstash" | ||
) | ||
|
||
func eventMappingXPack(r mb.ReporterV2, m *MetricSet, pipelines []logstash.PipelineState) error { | ||
for _, pipeline := range pipelines { | ||
// Exclude internal pipelines | ||
if pipeline.ID[0] == '.' { | ||
continue | ||
} | ||
|
||
// Rename key: graph -> representation | ||
pipeline.Representation = pipeline.Graph | ||
pipeline.Graph = nil | ||
|
||
// Extract cluster_uuids | ||
clusterUUIDs := pipeline.ClusterIDs | ||
pipeline.ClusterIDs = nil | ||
|
||
logstashState := map[string]logstash.PipelineState{ | ||
"pipeline": pipeline, | ||
} | ||
|
||
if pipeline.ClusterIDs == nil { | ||
pipeline.ClusterIDs = []string{""} | ||
} | ||
|
||
for _, clusterUUID := range clusterUUIDs { | ||
event := mb.Event{} | ||
event.RootFields = common.MapStr{ | ||
"timestamp": common.Time(time.Now()), | ||
"interval_ms": m.Module().Config().Period / time.Millisecond, | ||
"type": "logstash_state", | ||
"logstash_state": logstashState, | ||
} | ||
|
||
if clusterUUID != "" { | ||
event.RootFields["cluster_uuid"] = clusterUUID | ||
} | ||
|
||
event.ID = pipeline.EphemeralID | ||
event.Index = elastic.MakeXPackMonitoringIndexName(elastic.Logstash) | ||
r.Event(event) | ||
} | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters