0

I have a system configured with Telegraf + InfluxDB + Grafana on one machine.

Now I need to collect server metrics for Ubuntu servers which is deployed in the cloud and need to plot in Grafana.

My question here is :

  1. Can I collect the metrics through Telegraf itself ? if yes then do I need to install Telegraf in all the cloud servers to pull the metrics ?

  2. Is there any other way to pull the metrics from AWS cloud servers and store it in the central Influxdb database ?

  3. Is it possible to perform it through any other plugins available in Jmeter itself ?

Thanks In Advance for the valuable comments.

Roan
  • 103
  • 7
KK_3353
  • 1
  • 1

1 Answers1

0
  1. Yes you can and yes you need to install the telegraf agent on each server you want to monitor
  2. There are other ways of collecting server performance data:

  3. I'm not aware of any existing plugins, however you can come up with your own implementation of the AbstractBackendListenerClient which will be sending server-side performance metrics to InfluxDB
Dmitri T
  • 596
  • 2
  • 4
  • Thanks much for the response Dmitri .. Also i would like to know more about monitoring & collecting metrics from Distributed servers. * I would like to setup one Server (with influxDb and telegraf ) which collects and stores all the other server metrics. Here would like to know on configs to send the system metrics to the main server and config to receive the metrics through Telegraf. – KK_3353 Oct 09 '19 at 06:48