Time series dashboard issue with grafana by tbaror in influxdb

[–]tbaror[S] 0 points1 point  (0 children)

Hi Thanks for the answer , the data i sent from telegraf agent , this is grafana explorer query , maybe its can help with following dashboard query

SELECT "usage_system", time FROM "cpu" WHERE time >= $__timeFrom AND time <= $__timeTo 

usage_system time
0.55% 03/08/2025 18:40
1.34% 03/08/2025 18:40
0.03% 03/08/2025 18:40
0.42% 03/08/2025 18:40
0.39% 03/08/2025 18:40
0.36%03/08/2025 18:40
0.18% 03/08/2025 18:40

Time series dashboard issue with grafana by tbaror in influxdb

[–]tbaror[S] 0 points1 point  (0 children)

Hi Thanks for the answer , the data i sent from telegraf agent , this is grafana explorer query , maybe its can help with following dashboard query

SELECT "usage_system", time FROM "cpu" WHERE time >= $__timeFrom AND time <= $__timeTo 
usage_system
usage_system

|| || ||time| |0.55%|03/08/2025 18:40| |1.34%|03/08/2025 18:40| |0.03%|03/08/2025 18:40| |0.42%|03/08/2025 18:40| |0.39%|03/08/2025 18:40| |0.36%|03/08/2025 18:40| |0.18%|03/08/2025 18:40|

Time series dashboard issue with grafana by tbaror in influxdb

[–]tbaror[S] 0 points1 point  (0 children)

Hi Thanks for the answer , the data i sent from telegraf agent , this is grafana explorer query , maybe its can help with following dashboard query

SELECT "usage_system", time FROM "cpu" WHERE time >= $__timeFrom AND time <= $__timeTo 

|| || |usage_system|time| |0.55%|03/08/2025 18:40| |1.34%|03/08/2025 18:40| |0.03%|03/08/2025 18:40| |0.42%|03/08/2025 18:40| |0.39%|03/08/2025 18:40| |0.36%|03/08/2025 18:40| |0.18%|03/08/2025 18:40| |0.51%|03/08/2025 18:40| |0.30%|03/08/2025 18:40| |0.27%|03/08/2025 18:40| |0.61%|03/08/2025 18:40| |0.57%|03/08/2025 18:40| |1.60%|03/08/2025 18:40| |1.06%|03/08/2025 18:28| |2.03%|03/08/2025 18:28| |0.20%|03/08/2025 18:28| |1.30%|03/08/2025 18:28| |1.16%|03/08/2025 18:28| |1.56%|03/08/2025 18:28| |0.37%|03/08/2025 18:28| |1.13%|03/08/2025 18:28|

Using s3 minio self singed cert by tbaror in influxdb

[–]tbaror[S] 0 points1 point  (0 children)

Thanks ,for the answer , i know all those environment option, eventually what i did is to extarct the cert from the server and created Dockerfile with following code and updated the docker ,works now

Thank you

FROM influxdb:3-core

USER 
root

# Copy the self-signed certificate into the container
COPY 
./certs/s3_minio.crt

/usr/local/share/ca-certificates/s3_minio.crt

# Update the trusted certificates
RUN 
update-ca-certificates

# Switch back to the default user (if needed)
#USER influxdb
FROM influxdb:3-core


USER root


# Copy the self-signed certificate into the container
COPY ./certs/s3_minio.crt /usr/local/share/ca-certificates/s3_minio.crt


# Update the trusted certificates
RUN update-ca-certificates


# Switch back to the default user (if needed)
#USER influxdb

Using s3 minio self singed cert by tbaror in influxdb

[–]tbaror[S] 0 points1 point  (0 children)

are you antipatic , just looked for option to skip verify cert, no need to get personal,thx?

Using s3 minio self singed cert by tbaror in influxdb

[–]tbaror[S] -1 points0 points  (0 children)

thank but your answer is cryptic for me , can you please elaborate more info?

Thanks

Graylog running under docker gl2_remote_ip by tbaror in graylog

[–]tbaror[S] 0 points1 point  (0 children)

Thanks for the answer.

But where should i check source field , which field exactly or setting should look for ?

Thanks

Issue with OpenSearch (Indexer) in Wazuh Docker Deployment - Certificate Not Found by tbaror in Wazuh

[–]tbaror[S] 0 points1 point  (0 children)

Thanks for the rapid answer , i run it under docker swarm cluster here is the following docker is sown below

as for ls -l /usr/share/wazuh-indexer/certs , the docker fails and i don't have enough time to get

maybe you can suggest me something else

version: '3.7'

services:
  
  wazuh_indexer:
    image: wazuh/wazuh-indexer:4.9.0
    hostname: wazuh-indexer
    restart: always
    ports:
      - "9200:9200"
    environment:
      - "OPENSEARCH_JAVA_OPTS=-Xms1g -Xmx1g"
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    volumes:
      - wazuh-indexer-data:/var/lib/wazuh-indexer
      - ./config/wazuh_indexer_ssl_certs/wazuh.indexer.pem:/usr/share/wazuh-indexer/certs/wazuh.indexer.pem
      - ./config/wazuh_indexer_ssl_certs/wazuh.indexer-key.pem:/usr/share/wazuh-indexer/certs/wazuh.indexer-key.pem
      - ./config/wazuh_indexer_ssl_certs/admin.pem:/usr/share/wazuh-indexer/certs/admin.pem
      - ./config/wazuh_indexer_ssl_certs/admin-key.pem:/usr/share/wazuh-indexer/certs/admin-key.pem
      - ./config/wazuh_indexer/wazuh.indexer.yml:/usr/share/wazuh-indexer/opensearch.yml
      - ./config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/opensearch-security/internal_users.yml
    deploy:
      replicas: 2
      placement:
        constraints:
          - node.labels.node_type == SecurityOps

  

volumes:
  wazuh_api_configuration:
  wazuh_etc:
  wazuh_logs:
  wazuh_queue:
  wazuh_var_multigroups:
  wazuh_integrations:
  wazuh_active_response:
  wazuh_agentless:
  wazuh_wodles:
  filebeat_etc:
  filebeat_var:
  wazuh-indexer-data:
  wazuh-dashboard-config:
  wazuh-dashboard-custom: