mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
100 lines
2.5 KiB
Go
100 lines
2.5 KiB
Go
/*
|
|
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
|
Copyright (C) ITsysCOM GmbH
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
package analyzers
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/blevesearch/bleve/index/scorch"
|
|
"github.com/blevesearch/bleve/index/store/boltdb"
|
|
"github.com/blevesearch/bleve/index/store/goleveldb"
|
|
"github.com/blevesearch/bleve/index/store/moss"
|
|
"github.com/blevesearch/bleve/index/upsidedown"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
// NewInfoRPC returns a structure to be indexed
|
|
func NewInfoRPC(id uint64, method string,
|
|
params, result, err interface{},
|
|
enc, from, to string, sTime, eTime time.Time) *InfoRPC {
|
|
var e interface{}
|
|
switch val := err.(type) {
|
|
default:
|
|
case nil:
|
|
case string:
|
|
e = val
|
|
case error:
|
|
e = val.Error()
|
|
}
|
|
return &InfoRPC{
|
|
RequestDuration: eTime.Sub(sTime),
|
|
RequestStartTime: sTime,
|
|
// EndTime: eTime,
|
|
|
|
RequestEncoding: enc,
|
|
RequestSource: from,
|
|
RequestDestination: to,
|
|
|
|
RequestID: id,
|
|
RequestMethod: method,
|
|
RequestParams: utils.ToJSON(params),
|
|
Reply: utils.ToJSON(result),
|
|
ReplyError: e,
|
|
}
|
|
}
|
|
|
|
// InfoRPC the structure to be indexed
|
|
type InfoRPC struct {
|
|
RequestDuration time.Duration
|
|
RequestStartTime time.Time
|
|
// EndTime time.Time
|
|
|
|
RequestEncoding string
|
|
RequestSource string
|
|
RequestDestination string
|
|
|
|
RequestID uint64
|
|
RequestMethod string
|
|
RequestParams interface{}
|
|
Reply interface{}
|
|
ReplyError interface{}
|
|
}
|
|
|
|
type rpcAPI struct {
|
|
ID uint64 `json:"id"`
|
|
Method string `json:"method"`
|
|
Params interface{} `json:"params"`
|
|
|
|
StartTime time.Time
|
|
}
|
|
|
|
func getIndex(indx string) (indxType, storeType string) {
|
|
switch indx {
|
|
case utils.MetaScorch:
|
|
indxType, storeType = scorch.Name, scorch.Name
|
|
case utils.MetaBoltdb:
|
|
indxType, storeType = upsidedown.Name, boltdb.Name
|
|
case utils.MetaLeveldb:
|
|
indxType, storeType = upsidedown.Name, goleveldb.Name
|
|
case utils.MetaMoss:
|
|
indxType, storeType = upsidedown.Name, moss.Name
|
|
}
|
|
return
|
|
}
|