X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=pkg%2Fxapp%2Ftypes.go;h=6ae981a9af48e968fbf4301bbd4b3ec23821a47c;hb=79f0680fd7bbf1c8a8c6e2a842cb18020e387a47;hp=387d39321f7872d9545b98d799c243be7e7ab01c;hpb=b8b191fe31602c53414f8086381aef1a48e8be09;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/types.go b/pkg/xapp/types.go index 387d393..6ae981a 100755 --- a/pkg/xapp/types.go +++ b/pkg/xapp/types.go @@ -29,7 +29,8 @@ type RMRClient struct { ready int wg sync.WaitGroup mux sync.Mutex - stat map[string]Counter + statc map[string]Counter + statg map[string]Gauge consumers []MessageConsumer readyCb ReadyCB readyCbParams interface{} @@ -78,5 +79,24 @@ type PortData struct { ThreadType int LowLatency bool FastAck bool + Policies []int MaxRetryOnFailure int } + +type SymptomDataParams struct { + Timeout uint64 + FromTime uint64 + ToTime uint64 + importantOnly bool +} + +// @todo: read these from config or somewhere else +const ( + SERVICE_HTTP = "SERVICE_%s_%s_HTTP_PORT" + SERVICE_RMR = "SERVICE_%s_%s_RMR_PORT" + CONFIG_PATH = "/ric/v1/config" + REGISTER_PATH = "http://service-%s-appmgr-http.%s:8080/ric/v1/register" + DEREGISTER_PATH = "http://service-%s-appmgr-http.%s:8080/ric/v1/deregister" + DEFAULT_PLT_NS = "ricplt" + DEFAULT_XAPP_NS = "ricxapp" +)