This is my docker-compose file and using the default graylog.conf

version: '2'
services:
  mongo:
    image: mongo:3.4
    volumes:
      - ~/docker/graylog/data/mongo:/data/db
  elasticsearch:
    image: "elasticsearch:2.3"
    command: "elasticsearch -Des.cluster.name='graylog'"
    volumes:
      - ~/docker/graylog/data/elasticsearch:/usr/share/elasticsearch/data
  graylog:
    image: graylog2/server:latest
    environment:
          GRAYLOG_WEB_ENDPOINT_URI: http://127.0.0.1:9000/api
    links:
      - mongo 
      - elasticsearch
    ports:
      - 9000:9000
      - 5555:5555
      - 12201/udp:12201/udp
      - 1514/udp:1514/udp
    volumes:
      - ~/docker/graylog/data/journal:/usr/share/graylog/data/journal
      - ./deploy/ansible/files/graylog/:/usr/share/graylog/data/confi



On Thursday, December 8, 2016 at 2:53:20 AM UTC+8, Jiale Hu wrote:
>
>
>
>
> Graylog v2.2.0-beta.1+df8b477
>
>
> I am running this version graylog in docker.
> I have created a raw TCP input and received bits from my host like below
>
> Throughput / Metrics1 minute average rate: 0 msg/s
> Network IO: 0B 0B (total: 10.0B 0B )
> Active connections: 0 (7 total)
> Empty messages discarded: 0
>
>
> The problem is there is no message received and indexed, turns out that 
> search page is empty.
> Any idea on this ?
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Graylog Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to graylog2+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/643b6761-4f70-48c8-912f-12873f36b680%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to