Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Index cluster.id and cluster.name in elasticsearch/ml_job metricset #9165

Merged
merged 2 commits into from
Nov 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions metricbeat/module/elasticsearch/ml_job/_meta/data.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
{
"@timestamp": "2017-10-12T08:05:34.853Z",
"beat": {
"agent": {
"hostname": "host.example.com",
"name": "host.example.com"
},
"elasticsearch": {
"cluster": {
"id": "3LbUkLkURz--FR-YO0wLNA",
"name": "es1"
},
"ml": {
"job": {
"data_counts": {
"invalid_date_count": 0,
"processed_record_count": 0
},
"id": "filebeat-apache2-access-low_request_rate",
"id": "total-requests",
"state": "closed"
}
}
Expand Down
6 changes: 5 additions & 1 deletion metricbeat/module/elasticsearch/ml_job/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type jobsStruct struct {
Jobs []map[string]interface{} `json:"jobs"`
}

func eventsMapping(r mb.ReporterV2, content []byte) error {
func eventsMapping(r mb.ReporterV2, info elasticsearch.Info, content []byte) error {

jobsData := &jobsStruct{}
err := json.Unmarshal(content, jobsData)
Expand All @@ -63,6 +63,10 @@ func eventsMapping(r mb.ReporterV2, content []byte) error {
event.RootFields = common.MapStr{}
event.RootFields.Put("service.name", elasticsearch.ModuleName)

event.ModuleFields = common.MapStr{}
event.ModuleFields.Put("cluster.name", info.ClusterName)
event.ModuleFields.Put("cluster.id", info.ClusterID)

event.MetricSetFields, err = schema.Apply(job)
if err != nil {
event.Error = errors.Wrap(err, "failure applying ml job schema")
Expand Down
30 changes: 30 additions & 0 deletions metricbeat/module/elasticsearch/ml_job/data_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// 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.

// +build !integration

package ml_job

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't use an underscore in package name


import (
"testing"

"github.com/elastic/beats/metricbeat/module/elasticsearch"
)

func TestMapper(t *testing.T) {
elasticsearch.TestMapperWithInfo(t, "./_meta/test/ml.*.json", eventsMapping)
}
9 changes: 2 additions & 7 deletions metricbeat/module/elasticsearch/ml_job/data_xpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,9 @@ import (
"github.com/elastic/beats/metricbeat/module/elasticsearch"
)

func eventsMappingXPack(r mb.ReporterV2, m *MetricSet, content []byte) error {
info, err := elasticsearch.GetInfo(m.HTTP, m.HTTP.GetURI())
if err != nil {
return errors.Wrap(err, "failed to get info from Elasticsearch")
}

func eventsMappingXPack(r mb.ReporterV2, m *MetricSet, info elasticsearch.Info, content []byte) error {
var data map[string]interface{}
err = json.Unmarshal(content, &data)
err := json.Unmarshal(content, &data)
if err != nil {
return errors.Wrap(err, "failure parsing Elasticsearch ML Job Stats API response")
}
Expand Down
16 changes: 13 additions & 3 deletions metricbeat/module/elasticsearch/ml_job/ml_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
// Fetch methods implements the data gathering and data conversion to the right format
func (m *MetricSet) Fetch(r mb.ReporterV2) {

isMaster, err := elasticsearch.IsMaster(m.HTTP, m.HostData().SanitizedURI+jobPath)
isMaster, err := elasticsearch.IsMaster(m.HTTP, m.getServiceURI())
if err != nil {
err = errors.Wrap(err, "error determining if connected Elasticsearch node is master")
elastic.ReportAndLogError(err, r, m.Log)
Expand All @@ -71,20 +71,30 @@ func (m *MetricSet) Fetch(r mb.ReporterV2) {
return
}

info, err := elasticsearch.GetInfo(m.HTTP, m.getServiceURI())
if err != nil {
elastic.ReportAndLogError(err, r, m.Log)
return
}

content, err := m.HTTP.FetchContent()
if err != nil {
elastic.ReportAndLogError(err, r, m.Log)
return
}

if m.XPack {
err = eventsMappingXPack(r, m, content)
err = eventsMappingXPack(r, m, *info, content)
} else {
err = eventsMapping(r, content)
err = eventsMapping(r, *info, content)
}

if err != nil {
m.Log.Error(err)
return
}
}

func (m *MetricSet) getServiceURI() string {
return m.HostData().SanitizedURI + jobPath
}