Packetbeat is the Open Source solution for monitoring Distributed Applications. Think of it like a distributed real-time Wireshark with a lot more analytics features. Packetbeat agents sniff the traffic between your application processes, parse on the fly protocols like HTTP, MySQL, Postgresql, Redis or Thrift and correlate the messages into transactions.
Questions tagged [packetbeat]
53 questions
14
votes
3 answers
Query docker embedded dns from host
Does anybody know a way to query the embedded dns server that the docker daemon uses. I'm experimenting with packetbeats and it would be useful if I could replace docker ip addresses with the container names.
The only way I can currently think of to…

K2J
- 2,573
- 6
- 27
- 34
2
votes
0 answers
Packetbeat failed to connect to backoff
I have a simple express app with Nginx and I use Filebeat with ELK stack. Filebeat takes in charge of streaming log file from Nginx to Logstash then processing it and visualize to Kibana. This pipeline works fine. However, I wanted to check how can…

Kosmylo
- 436
- 1
- 6
- 20
2
votes
1 answer
With Elastic Search, how can I index a document containing an array into multiple documents, one per array item?
Suppose I have a JSON document (sent from packetbeat in this case) containing some structure like this:
{
"source": "http://some/url/",
"items": [
{"name":"item1", "value":1},
{"name":"item2", "value":2}
]
}
How can I have Elastic…

phhu
- 1,462
- 13
- 33
2
votes
1 answer
securely connect to open distro elastic from packetbeat
I can connect to elastic server using curl as shown below.
# curl --user "root:xxxxx" https://search-testme-gvzxezayzzc4pcw2xcyvndb6jq.us-east-1.es.amazonaws.com/_aliases
I get the expected response and it means the credentials are…

shantanuo
- 31,689
- 78
- 245
- 403
2
votes
1 answer
Packetbeat missing some data
Is there a limit of 10 seconds for logging queries using packetbeat? For e.g. The first query in the following example got logged correctly as expected. But the second query does not show up in elastic.
MySQL [test]> select…

shantanuo
- 31,689
- 78
- 245
- 403
2
votes
1 answer
Packetbeat not able to connect to elasticsearch docker
I am trying to dockerize all the elastic services that I need to use. The docker-compose file looks like below
version: '3'
services:
redis:
build: ./docker/redis
postgresql:
build: ./docker/postgresql
ports:
- "5433:5432"
…

forJ
- 4,309
- 6
- 34
- 60
2
votes
1 answer
proper tools for pcap file analysis in ELK stack?
I'm sure this is a softball for those who are familiar with the Elastic Stack, but the docs I've read havent left it super clear.
I essentially am trying to push pcap files through the ELK stack to visualize packet information using Kibana.
I am…

75inchpianist
- 4,112
- 1
- 21
- 39
2
votes
1 answer
How to configure Packetbeat to sniff "any" devices on Windows?
The documentation for Packetbeat is pretty straightforward and says it very clearly as stated below
On Linux, you can specify any for the device, and Packetbeat captures all messages sent or received by the server where Packetbeat is…

Abhi
- 314
- 1
- 7
- 23
1
vote
1 answer
How to monitor https traffic using packetbeat?
Is there way to get the response code of https calls using packetbeat. I don’t see any protocol for https. The goal is to monitor https traffic

Sowmiya
- 57
- 4
1
vote
0 answers
How to send Filebeat, Meticbeat and Packetbeat data to Fluentd daemonset deployed on 3 node Kubernetes cluster?
I have a 3 nodes Kubernetes cluster, on which I have fluentd deployed as damonset. This fluentd is tailing all the container logs on Kubernetes cluster and sending it to Elasticsearch deployed on the same Kubernetes cluster. I have an external Linux…

nilse
- 143
- 1
- 1
- 6
1
vote
0 answers
Packetbeat appears to be adding DNS packets that were not really sent
I have an interesting problem with Packetbeat. Packetbeat is installed on a Debian 10 system. It is the latest version of Packetbeat (installed fresh this week from the Elastic download area) and sending data to Elastic v7.7 also installed on a…

Scott
- 11
- 2
1
vote
1 answer
Decoding gzip response body from Packetbeat
I am using Packetbeat to monitor the requests/responses into/out of Elasticsearch client nodes using the http protocol watcher on port 9200. I am sending the output of Packetbeat through Logstash, and then from there out to a different instance of…

Lusid
- 4,518
- 1
- 24
- 24
1
vote
1 answer
How to PUT GET or POST a new Index Elasticsearch mapping
Good day my dear internet companions
In this day, I would like to know the way to specify an Elasticsearch mapping, or create one.
My aim is to know the exact way to create an Elasticsearh mapping, because I have seen code like this:
PUT…

Manuel Flores
- 25
- 6
1
vote
1 answer
elastic watcher does not attach documents
I am using cloud elastic service and I have watcher entry that will alert me every hour about the count of packetbeat count. The code can be seen here...
https://ghostbin.com/paste/m5jqr
This is working as expected. But the attachment is just the…

shantanuo
- 31,689
- 78
- 245
- 403
1
vote
2 answers
Java decompress HTTP GZIP content from json attribute
We are working with packetbeat, a network packet analyzer tool to capture http requests and http responses. Packebeat persists this packet events in json format. The problem comes when the server supports gzip compression, packetbeat could not unzip…

Ignacio Rodríguez Chuvieco
- 13
- 1
- 4