This message was deleted.
s
This message was deleted.
p
@Aboubakr LACHHAB welcome to SigNoz community👋 How are you generating host metrics in this machine?
a
thanks @Pranay I used HostMetrics from @opentelemetry/host-metrics. and if I choose exporter : new ConsoleMetricExporter(), it return in the console the next results:
Copy code
{
  name: 'system.cpu.utilization',
  description: 'Cpu usage time 0-1',
  unit: '1',
  metricKind: 5,
  valueType: 1
}
{ state: 'nice', cpu: '3' }
value: 0
{
  name: 'system.memory.usage',
  description: 'Memory usage in bytes',
  unit: '1',
  metricKind: 4,
  valueType: 1
}
{ state: 'used' }
value: 7360823296
p
ok, can you follow theses steps to find metrics which are available in SIgNoz - https://signoz.io/docs/userguide/send-metrics/#find-metrics-available-in-signoz and then try plotting them on the dashboard
a
thanks @Pranay so I should Install Clickhouse client in each server I want to monitoring it CPU, Memory... (other than where signoz is installed,)
if we use the same PromQL Query (system_memory_usage_total, system_cpu_time ...) for the metrics of all servers, how we can make deference between metrics of each server?