commit | f90b16b1f8578426c5d598ccc0e11506d72c1b6d | [log] [tgz] |
---|---|---|
author | Wei-Yu Chen <wychen@intel.com> | Tue May 24 22:04:41 2022 +0800 |
committer | Wei-Yu Chen <wychen@intel.com> | Wed May 25 21:13:29 2022 +0800 |
tree | 863b76d6cf16033d43641a696ccf5393a52d0b8f | |
parent | b91af855ead147a72e3c76eb34058a2c3656d30b [diff] |
Update Dockerfile to expose service ports Change-Id: Ia49ab3a2ffaf1a70fb2b9867b3db4b6468d4cb25
eNodeB daemon is an Automatic Configuration Server (ACS) which forks from Facebook Magma project. It currently tested with Sercomm eNodeB P27-SCE4255W small cell.
# The all command will create a virtual environment, install protoc and compile the proto files make all # Enter the virtual environment . venv/bin/activate # Run enodebd python main.py
We have these configuration files for configuring eNodeBD service.
The enodebd will generate the empty configuration to config service, and it will load override_configs/gateway.mconfig
to fill in the empty configuration.
The acs_common.yml
will hold the default value for all eNodeBs, like as the PLMN may be a shared value among all eNodeBs.
The serial_number.yml
will have the customized value for each configurable parameters. The value in serial_number.yml
will override the value defines in gateway.mconfig
and acs_common.yml
when corresponding eNodeB connects (base on the serial number provided by eNodeB).
The following example configuration can start a Prometheus container for monitoring data sent by enodebd. The enodebd will start prometheus server on port 8000 by default.
# prometheus configuration - prometheus.yml global: scrape_interval: 15s external_labels: monitor: 'codelab-monitor' scrape_configs: - job_name: 'prometheus' scrape_interval: 5s static_configs: # The 8000 is the default port of prometheus client of enodebd - targets: ['172.17.0.1:8000']
... and start prometheus container with docker command.
$ docker run -p 9090:9090 -v /home/ubuntu/magma-enodebd-new/prometheus.yml:/etc/prometheus/prometheus.yml prom/prometheus
This project is under 3-Clause BSD license.