├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── archive ├── fetch_orm.go ├── insert_beego.go ├── insert_gorm.go ├── sample_cdr_riak.go └── try-pgsql.go ├── cdr-pusher.yaml ├── cdr_generator.go ├── cdr_pusher.go ├── configfile.go ├── configfile_test.go ├── database_fetcher.go ├── database_fetcher_test.go ├── helper.go ├── helper_test.go ├── install └── postgresql │ └── cdr_schema.sql ├── pusher_postgres.go ├── pusher_postgres_test.go ├── pusher_riak.go └── sqlitedb ├── cdr.db └── schema.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/README.md -------------------------------------------------------------------------------- /archive/fetch_orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/archive/fetch_orm.go -------------------------------------------------------------------------------- /archive/insert_beego.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/archive/insert_beego.go -------------------------------------------------------------------------------- /archive/insert_gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/archive/insert_gorm.go -------------------------------------------------------------------------------- /archive/sample_cdr_riak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/archive/sample_cdr_riak.go -------------------------------------------------------------------------------- /archive/try-pgsql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/archive/try-pgsql.go -------------------------------------------------------------------------------- /cdr-pusher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/cdr-pusher.yaml -------------------------------------------------------------------------------- /cdr_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/cdr_generator.go -------------------------------------------------------------------------------- /cdr_pusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/cdr_pusher.go -------------------------------------------------------------------------------- /configfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/configfile.go -------------------------------------------------------------------------------- /configfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/configfile_test.go -------------------------------------------------------------------------------- /database_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/database_fetcher.go -------------------------------------------------------------------------------- /database_fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/database_fetcher_test.go -------------------------------------------------------------------------------- /helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/helper.go -------------------------------------------------------------------------------- /helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/helper_test.go -------------------------------------------------------------------------------- /install/postgresql/cdr_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/install/postgresql/cdr_schema.sql -------------------------------------------------------------------------------- /pusher_postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/pusher_postgres.go -------------------------------------------------------------------------------- /pusher_postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/pusher_postgres_test.go -------------------------------------------------------------------------------- /pusher_riak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/pusher_riak.go -------------------------------------------------------------------------------- /sqlitedb/cdr.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/sqlitedb/cdr.db -------------------------------------------------------------------------------- /sqlitedb/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areski/cdr-pusher/HEAD/sqlitedb/schema.sql --------------------------------------------------------------------------------