mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Script that describes how to migrate traffic bills from observium. (#13757)
* Add Traffic_bills.md This script describes how to migrate traffic bills from observium to librenms. * pretty print mysql and some cosmetics uppercase SQL Keywords remove double spaces
This commit is contained in:
109
scripts/Migration/Traffic_bills.md
Normal file
109
scripts/Migration/Traffic_bills.md
Normal file
@@ -0,0 +1,109 @@
|
||||
# Traffic Bill Mirgation from Observium
|
||||
|
||||
This Document describes how to migrate the **traffic bills** from Observium to librenms
|
||||
|
||||
### Assumptions
|
||||
|
||||
* The librenms installation is complete and migration has taken place except for the traffic bills and traffic bill history.
|
||||
* The old DB is called ``observium`` and new DB is called ``librenms``. If both DBs are not on the same DB Server, create a DB called ``observium`` on the target DB-Server run mysqldump & co to copy the data.
|
||||
* **No traffic bills** have been created in librenms.
|
||||
* The scripts have been tested on librenms version Version 22.1.0 and DB Schema "2021_11_29_165436_improve_ports_search_index (229)"
|
||||
|
||||
### Precaution
|
||||
backup your databases first:
|
||||
* ``mysqldump observium > observium.sql``
|
||||
* ``mysqldump librenms > librenms.sql``
|
||||
|
||||
### Warning: traffic bills will be deleted from librenms and imported from observium!
|
||||
|
||||
### Initial Import
|
||||
|
||||
```mysql
|
||||
\u observium
|
||||
|
||||
LOCK TABLES librenms.bill_history librenms.bills librenms.bill_data WRITE, observium.bill_data WRITE, observium.bill_history READ, observium.bills READ ;
|
||||
|
||||
--
|
||||
-- The columns bill_polled, bill_contact, bill_threshold and bill_notify are not present in the observium data model
|
||||
--
|
||||
TRUNCATE TABLE librenms.bills;
|
||||
INSERT INTO librenms.bills
|
||||
( bill_id, bill_name, bill_type, bill_cdr, bill_day, bill_quota, rate_95th_in, rate_95th_out, rate_95th, dir_95th, total_data, total_data_in, total_data_out, rate_average_in, rate_average_out, rate_average, bill_last_calc, bill_custid, bill_ref, bill_notes, bill_autoadded )
|
||||
SELECT
|
||||
bill_id, bill_name, bill_type, bill_cdr, bill_day, bill_quota, rate_95th_in, rate_95th_out, rate_95th, dir_95th, total_data, total_data_in, total_data_out, rate_average_in, rate_average_out, rate_average, bill_last_calc, bill_custid, bill_ref, bill_notes, bill_autoadded
|
||||
FROM observium.bills
|
||||
;
|
||||
|
||||
--
|
||||
-- the columns bill_peak_out, bill_peak_in are not present in the observium data model
|
||||
--
|
||||
TRUNCATE TABLE librenms.bill_history;
|
||||
INSERT INTO librenms.bill_history
|
||||
( bill_hist_id, bill_id, updated, bill_datefrom, bill_dateto, bill_type, bill_allowed, bill_used, bill_overuse, bill_percent, rate_95th_in, rate_95th_out, rate_95th, dir_95th, rate_average, rate_average_in, rate_average_out, traf_in, traf_out, traf_total, pdf )
|
||||
SELECT
|
||||
bill_hist_id, bill_id, updated, bill_datefrom, bill_dateto, bill_type, bill_allowed, bill_used, bill_overuse, bill_percent, rate_95th_in, rate_95th_out, rate_95th, dir_95th, rate_average, rate_average_in, rate_average_out, traf_in, traf_out, traf_total, pdf
|
||||
FROM observium.bill_history
|
||||
;
|
||||
|
||||
|
||||
--
|
||||
-- There is a Primary key on bill_id and timestamp, to in case of duplicate primary keys we use the recorrd with the greatest bill_data.delta. ( see "ON DUPLICATE KEY UPDATE ...")
|
||||
--
|
||||
SELECT COUNT(bill_id) FROM observium.bill_data;
|
||||
TRUNCATE TABLE librenms.bill_data;
|
||||
INSERT INTO librenms.bill_data
|
||||
( bill_id, timestamp, period, delta, in_delta, out_delta )
|
||||
SELECT
|
||||
bill_id, timestamp, period, delta, in_delta, out_delta from observium.bill_data
|
||||
ON DUPLICATE KEY UPDATE
|
||||
librenms.bill_data.delta=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.delta, VALUES(librenms.bill_data.delta) ),
|
||||
librenms.bill_data.in_delta=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.in_delta, VALUES(librenms.bill_data.in_delta) ),
|
||||
librenms.bill_data.out_delta=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.out_delta, VALUES(librenms.bill_data.out_delta) ),
|
||||
librenms.bill_data.period=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.period, VALUES(librenms.bill_data.period) )
|
||||
;
|
||||
COMMIT;
|
||||
SELECT COUNT(bill_id) FROM librenms.bill_data;
|
||||
UNLOCK TABLES;
|
||||
|
||||
-- Please compare if the count(bill_id) values are reasonable
|
||||
```
|
||||
|
||||
### Go to the WEB UI
|
||||
|
||||
Now check if everything worked OK and reconnect the switchports in the GUI.
|
||||
|
||||
### Second import:
|
||||
Replay the data collecetd on observium since before the last copy, to avoid loosing billing records.
|
||||
|
||||
|
||||
```mysql
|
||||
\u observium
|
||||
|
||||
LOCK TABLES librenms.bill_data WRITE, observium.bill_data WRITE ;
|
||||
SELECT COUNT(bill_id) FROM observium.bill_data;
|
||||
TRUNCATE TABLE librenms.bill_data;
|
||||
|
||||
INSERT INTO librenms.bill_data
|
||||
( bill_id, timestamp, period, delta, in_delta, out_delta )
|
||||
SELECT
|
||||
bill_id, timestamp, period, delta, in_delta, out_delta from observium.bill_data
|
||||
ON DUPLICATE KEY UPDATE
|
||||
librenms.bill_data.delta=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.delta, VALUES(librenms.bill_data.delta) ),
|
||||
librenms.bill_data.in_delta=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.in_delta, VALUES(librenms.bill_data.in_delta) ),
|
||||
librenms.bill_data.out_delta=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.out_delta, VALUES(librenms.bill_data.out_delta) ),
|
||||
librenms.bill_data.period=
|
||||
IF ( librenms.bill_data.delta >= VALUES(librenms.bill_data.delta), librenms.bill_data.period, VALUES(librenms.bill_data.period) )
|
||||
;
|
||||
COMMIT ;
|
||||
SELECT COUNT(bill_id) FROM librenms.bill_data;
|
||||
UNLOCK TABLES;
|
||||
SELECT "The next query should return an empty set" AS "Information";
|
||||
SELECT t1.bill_id AS "unrefferenced bill_data.bill_id records", t1.timestamp FROM bill_data AS t1 LEFT JOIN bills t2 ON t1.bill_id = t2.bill_id WHERE t2.bill_id IS NULL LIMIT 100;
|
||||
```
|
Reference in New Issue
Block a user