Questions tagged [metricbeat]

Questions related to installation and configuration of metricbeat which is a product from Elastic.

Metricbeat is a product from Elastic. https://www.elastic.co/products/beats/metricbeat

212 questions
0
votes
2 answers

Running elastalert rule : IOError: [Errno 2] No such file or directory: 'config.yaml'

I create a rule name: Metricbeat CPU Spike Rule type: metric_aggregation # How often ElastAlert will query Elasticsearch # The unit can be anything from weeks to seconds run_every: minutes: 1 es_host: localhost es_port: 9200 index:…
0
votes
1 answer

logstash filter for metricbeat

I'm trying to rename a process metric data (metricbeat input) using logstash-filter-alter condrewrite option filter { if [metricset][name] == "process" { alter { condrewrite => ["system.process.name", "php", "queue"] } } } But it…
Nir Tal
  • 21
  • 1
0
votes
2 answers

ElasticSearch MetricBeat mapping issue

I have installed MetricBeat on my Windows system. And started it. In the configuration metricbeats.yml I have set the elasticsearch property as follows output.elasticsearch: _ # Array of hosts to connect to._ _ hosts: [“10.193.164.145:9200”]_ _…
0
votes
0 answers

Does MetricBeat/Telegraf supports metrics monitoring from remote?

I have requirement to install MetricBeat / Telegraf server agents in one server and have to monitor the metrics of other servers remotely. Is this possible with MetricBeat / Telegraf server agents?
Prasad
  • 13
  • 4
0
votes
1 answer

visualize IOPS using metricbeat and elasticsearch

I am using metricbeat to calculate system disk io data. I can not calculate and visualize IO per second of the system. I am new to elasticsearch stacks.
Beaumind
  • 876
  • 1
  • 6
  • 13
0
votes
1 answer

Logstash can't create index in elasticsearch for metricbeat file output

I am trying to ingest metricbeat file output through logstash but logstash is not creating any index in elasticsearch. Below is my logstash .conf file input { file { type => "my-metricbeat" path =>…
0
votes
1 answer

Watcher in elasticsearch for High CPU usage

I want to set watcher send mail to if usage of CPU in last X minutes over N%. First elasticsearch get data from remote server through metricbeat on each minutes. Then i want to by using that data inform administrator off high CPU usage on remote…
squareCircle
  • 192
  • 1
  • 13
0
votes
2 answers

getting issue in kibana dashboard - set fielddata=true

I am getting docker performance data using metricbeat and I am trying to produce Dashboards out of Docker Performance Data. Errors I am getting In Kibana Dashboard: And I enabled fielddata:true in metricbeat.template.json : and then I restarted…
Soundarya Thiagarajan
  • 574
  • 2
  • 13
  • 31
0
votes
0 answers

x509: cannot validate certificate because it doesn't contain any IP SANs

I'm trying to implement an ELK stack while gathering information with Filebeat and MetricBeat on clients. Installation went well, filebeat is runing OK on the client and sending information to logstash (thanks to 'insecure: true). Metricbeats don't…
Jbertrand
  • 419
  • 1
  • 4
  • 14
0
votes
1 answer

Remove "message" field for metricbeat set data

I am trying to get metricbeat data using logstash. (Kafka as input & ElasticSearch as Output). input { kafka { bootstrap_servers => "XX.XX.XXX.XX:9092" topics => ["cc-data"] } } output { elasticsearch { hosts =>…
0
votes
2 answers

metricbeat output kafka configuration

I am trying to get the system metrics using metricbeat (metricbeat 5.1.1 and output the data to kafka topic) output.kafka: # Boolean flag to enable or disable the output module. enabled: true # The list of Kafka broker addresses from where…
Soundarya Thiagarajan
  • 574
  • 2
  • 13
  • 31
0
votes
1 answer

Elasticsearch multiple indices per beats?

I am using filebeat and I want to also introduce metricbeat. Filebeat output is indexed in logstash-* however I need a different index with only the data from metricbeat (such as metricbeat-test-%{+YYYY.MM.dd} ) These will run together on a single…
user3124171
  • 401
  • 2
  • 7
  • 19
-1
votes
1 answer

Elasticsearch/client.go:408 Cannot index event

2022-02-14T15:46:03.114Z WARN [elasticsearch] elasticsearch/client.go:408 Cannot index event publisher.Event{Content:beat.Event{Timestamp:time.Time{wall:0xbaeb900, ext:63780449718, loc:(*time.Location)(0x5864aa0)}, Meta:null,…
qubsup
  • 1,241
  • 5
  • 15
  • 23
-1
votes
1 answer

Elasticsearch - When I start my Metricbeat with Docker on Mac, there is no new index created

I follow this guide to change metricbeat.yml as below in order to let Elasticsearch creating new index per day, e.g. metricbeat-7.5.0-2020.02.02-000001 . #-------------------------- Elasticsearch output…
DaiKeung
  • 1,077
  • 1
  • 19
  • 38
-1
votes
1 answer

How to convert string field into integer field in kibana

So i am sending data of event viewer through winlogbeat to kibana. Actually my event_data.boottime value is coming in string format and i wanted this data field in number format. I have tried changing the format in winlogbeat.template.json but its…
1 2 3
14
15