skydive icon indicating copy to clipboard operation
skydive copied to clipboard

An open source real-time network topology and protocols analyzer

Results 134 skydive issues
Sort by recently updated
recently updated
newest added

``` upstream skydive_backend { server 127.0.0.1:8082; } server { listen 443 ssl; server_name skydive.mycompany.local; access_log /var/log/nginx/skydive-access.log full; error_log /var/log/nginx/skydive-error.log warn; location / { proxy_pass http://skydive_backend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;...

In the changelog for the last version it is said that support for plugins has been added. Looking through the code/commits looks like there is a new config parameter for...

Maybe could be more interesting to implement a [GraphQL](https://graphql.org/) API to access the data instead of the REST API. GraphQL adapts better to the graph database schema, it is self-documented...

I got an error building skydive as the skydive/ebpf-builder image is x86_64 only. I worked around this with: ebpf/Makefile @@ -35,7 +36,7 @@ build-ebpf-docker-image: pull-ebpf-docker-image: docker pull $(DOCKER_EBPF_BUILDER_IMAGE):latest -docker-ebpf-build: pull-ebpf-docker-image...

Hello, I'm running skydive with NSM, as usual, using the same config and same image, but this time the network topology is not visualized and the agent log has this...

Hi! For now, Skydive knows nothing about the processes. Is there any plans to add a possibility to track network flow on this level too? Does Skydive architecture allow it?

In NSM we store traffic metrics in Prometheus - RX/TX bytes, packets and error packets. We have those for every pod-to-pod connection. We would like to show those in addition...