Guest User

Untitled

a guest
Apr 29th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.57 KB | None | 0 0
  1. cdr_billing:
  2.   mode: production
  3.   class: cdr_billing
  4.   queue: cdr_billing
  5.   consumer: cdr_billing
  6.   syslog_program_name: "YETI-cdr-billing"
  7.   mail_to: "bug-report@yeti-switch.org"
  8.   mail_from: "yeti-cdr-billing@example.com"
  9.   mail_subject: "Exception happened in CDR billing"
  10.  
  11. cdr_http:
  12.   mode: production
  13.   class: cdr_http
  14.   queue: cdr_billing
  15.   consumer: cdr_billing
  16.   syslog_program_name: "YETI-cdr-billing"
  17.   mail_to: "bug-report@yeti-switch.org"
  18.   mail_from: "yeti-cdr-billing@example.com"
  19.   mail_subject: "Exception happened in CDR http"
  20.   url: "http://example.com/api/cdrs"
  21.   method: POST
  22.   # may be an array:
  23.   #  cdr_fields: [
  24.   #                 'id', 'src_prefix_in', 'src_prefix_out', 'dst_prefix_in', 'dst_prefix_out', 'time_start',
  25.   #                 'time_connect', 'time_end',  'duration', 'customer', 'vendor',  'destination_fee',
  26.   #                 'destination_initial_interval', 'destination_initial_rate', 'destination_next_interval',
  27.   #                 'destination_next_rate', 'customer_price',  'orig_call_id', 'local_tag', 'term_call_id'
  28.   #              ]
  29.   cdr_fields: all
  30.  
  31. cdr_amqp:
  32.   mode: production
  33.   class: cdr_amqp
  34.   queue: cdr_streaming
  35.   consumer: cdr_amqp
  36.   syslog_program_name: "YETI-cdr-billing"
  37.   mail_to: "bug-report@yeti-switch.org"
  38.   mail_from: "yeti-cdr-billing@example.com"
  39.   mail_subject: "Exception happened in CDR AMQP"
  40.   connect:
  41.     host: "127.0.0.1"
  42.     port: 5672
  43.     ssl: false
  44.     vhost: "/"
  45.     user: "guest"
  46.     pass: "guest"
  47.     heartbeat: :server
  48.     frame_max: 131072
  49.     auth_mechanism: "PLAIN"
Add Comment
Please, Sign In to add comment