-
Notifications
You must be signed in to change notification settings - Fork 35
Repo Layout
Shannon Weyrick edited this page Jul 7, 2021
·
5 revisions
├── RFCs: Request for Comments (Architectural Proposals)
├── agent: Orb Agent business logic
│ └── backend: abstraction layer for different orb sensors
│ └── pktvisor: pktvisor orb sensor
├── build
├── cmd
│ ├── agent
│ ├── fleet
│ ├── policies
│ ├── prom-sink
│ └── sinks
├── docker
│ ├── configs
│ ├── nats
│ ├── nginx
│ │ └── snippets
│ ├── ssl
│ │ └── certs
│ └── templates
├── docs
│ └── images
├── fleet
│ ├── api
│ ├── postgres
│ └── redis
│ ├── consumer
│ └── producer
├── internal
│ └── httputil
├── localconfig
├── pkg
│ ├── config
│ ├── db
│ ├── errors
│ ├── mainflux
│ │ └── transformers
│ │ └── passthrough
│ └── types
├── policies
│ ├── api
│ │ ├── grpc
│ │ └── http
│ ├── backend
│ │ ├── orb
│ │ └── pktvisor
│ ├── pb
│ ├── postgres
│ └── redis
│ └── producer
├── promremotewrite
├── sinks
│ ├── api
│ ├── postgres
│ ├── redis
│ │ ├── consumer
│ │ └── producer
│ └── writer
│ ├── consumer
│ └── prom
└── ui