retina

module
v0.10.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2024 License: MIT

README

Retina

Open in GitHub Codespaces

goreport GitHub release retina-publish license

retina-test retinash retina-publish retina-codeql-img retina-golangci-lint-img

Overview

Retina is a cloud-agnostic, open-source Kubernetes network observability platform that provides a centralized hub for monitoring application health, network health, and security. It provides actionable insights to cluster network administrators, cluster security administrators, and DevOps engineers navigating DevOps, SecOps, and compliance use cases.

Retina collects customizable telemetry, which can be exported to multiple storage options (such as Prometheus, Azure Monitor, and other vendors) and visualized in a variety of ways (like Grafana, Azure Log Analytics, and other vendors).

Features

  • eBPF-based Network Observability platform for Kubernetes workloads.
  • On-Demand and Configurable.
  • Actionable, industry-standard Prometheus metrics.
  • Streamlined Packet Captures for deep dives.
  • Cloud-agnostic, supporting multiple OS (like Linux, Windows, Azure Linux).

Why Retina?

Retina lets you investigate network issues on-demand and continuously monitor your clusters. For scenarios where Retina shines, see the intro docs here

Documentation

See retina.sh for documentation and examples.

Capabilities

Retina has two major features:

Metrics Quick Install Guide

Retina can be installed using the Helm chart from GHCR:

# Set the version to a specific version here or get latest version from GitHub API.
VERSION=$( curl -sL https://api.github.com/repos/microsoft/retina/releases/latest | jq -r .name)
helm upgrade --install retina oci://ghcr.io/microsoft/retina/charts/retina \
    --version $VERSION \
		--set image.tag=$VERSION \
		--set operator.tag=$VERSION \
		--set logLevel=info \
		--set enabledPlugin_linux="\[dropreason\,packetforward\,linuxutil\,dns\]"

Set the version and image tag arguments to the desired version, if different.

After Helm install, follow steps in Using Prometheus and Grafana to set up metrics collection and visualization.

Captures Quick Start Guide
Captures via CLI

The preferred way to install the Retina CLI using Krew.

kubectl krew install retina

Other installation options are documented in CLI Installation.

Verify installation:

$ kubectl retina version
v0.0.4 # or latest version

To quickly start creating a capture:

kubectl retina capture create --name <my-capture> --namespace <my-namespace> --selector <app=my-app>

For further CLI documentation, see Capture with Retina CLI.

Captures via CRD

Install Retina using Helm:

VERSION=$( curl -sL https://api.github.com/repos/microsoft/retina/releases/latest | jq -r .name)
helm upgrade --install retina oci://ghcr.io/microsoft/retina/charts/retina \
    --version $VERSION \
    --set image.tag=$VERSION \
    --set operator.tag=$VERSION \
    --set image.pullPolicy=Always \
    --set logLevel=info \
    --set os.windows=true \
    --set operator.enabled=true \
    --set operator.enableRetinaEndpoint=true \
    --skip-crds \
    --set enabledPlugin_linux="\[dropreason\,packetforward\,linuxutil\,dns\,packetparser\]"

Then follow steps in Capture CRD for documentation of the CRD and examples for setting up Captures.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Read more about how to begin contributing here.

Verify signed images

Retina images published to GHCR are cryptographically signed. You can verify their provenance with sigstore/cosign:

REPO=microsoft/retina # or your repo
IMAGE=retina-operator # or other image to verify
TAG=v0.0.6 # or other tag to verify OR replace with the image SHA256
cosign verify ghcr.io/$REPO/$IMAGE:$TAG --certificate-oidc-issuer https://token.actions.githubusercontent.com --certificate-identity-regexp="https://github.com/$REPO" -o text
Office Hours and Community Meetings

We host a periodic open community meeting. Find the details here.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

License

See the LICENSE.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Contact

For bugs or feature requests, open an issue. For security or vulnerability concerns, see SECURITY.md. For other communication, contact the maintainers at retina@microsoft.com.

Directories

Path Synopsis
cli
cmd
crd
api/v1alpha1
Package v1alpha1 contains API Schema definitions for the retina v1alpha1 API group +kubebuilder:object:generate=true +groupName=retina.sh
Package v1alpha1 contains API Schema definitions for the retina v1alpha1 API group +kubebuilder:object:generate=true +groupName=retina.sh
hack
tools Module
init
internal
pkg
bpf
capture
Package capture contains functions related to handling Retina/Capture.
Package capture contains functions related to handling Retina/Capture.
capture/provider
Package provider is a generated GoMock package.
Package provider is a generated GoMock package.
common/apiretry
package apiretry provides the retry logic for API calls.
package apiretry provides the retry logic for API calls.
controllers/operator/capture
package capture features the retina capture controller.
package capture features the retina capture controller.
enricher
Package enricher is a generated GoMock package.
Package enricher is a generated GoMock package.
log
managers/filtermanager
Package filtermanager is a generated GoMock package.
Package filtermanager is a generated GoMock package.
managers/watchermanager/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
module/traces
Package traces is a generated GoMock package.
Package traces is a generated GoMock package.
plugin/api
Package api provides the api for all Retina eBPF plugins.
Package api provides the api for all Retina eBPF plugins.
plugin/api/mock
Package mock is a generated GoMock package.
Package mock is a generated GoMock package.
plugin/common
package common contains common functions and types used by all Retina plugins.
package common contains common functions and types used by all Retina plugins.
plugin/common/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
plugin/dns
Package dns contains the Retina DNS plugin.
Package dns contains the Retina DNS plugin.
plugin/dropreason
Package dropreason contains the Retina DropReason plugin.
Package dropreason contains the Retina DropReason plugin.
plugin/dropreason/mocks
Package dropreason is a generated GoMock package.
Package dropreason is a generated GoMock package.
plugin/filter
Package filter contains the Retina filter plugin.
Package filter contains the Retina filter plugin.
plugin/filter/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
plugin/packetforward
package packetforward contains the Retina packetforward plugin.
package packetforward contains the Retina packetforward plugin.
plugin/packetforward/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
plugin/packetparser
package packetparser contains the Retina packetparser plugin.
package packetparser contains the Retina packetparser plugin.
plugin/packetparser/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
plugin/registry
Package registry contains the plugin registry for Retina.
Package registry contains the plugin registry for Retina.
plugin/tcpretrans
Package tcpretrans contains the Retina tcpretrans plugin.
Package tcpretrans contains the Retina tcpretrans plugin.
plugin/windows/hnsstats
Package hnsstats contains the hnsstats plugin.
Package hnsstats contains the hnsstats plugin.
pubsub
Package pubsub is a generated GoMock package.
Package pubsub is a generated GoMock package.
watchers/apiserver/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
test
retry
todo: there are more robust retry packages out there, discuss with team
todo: there are more robust retry packages out there, discuss with team
utsummary
Summarizes the output of go test.
Summarizes the output of go test.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL