1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00
Commit graph

358 commits

Author SHA1 Message Date
Benedikt Rudolph
945e0446a0 Merge branch 'develop' into master for '1.11.3'
Changes since last version:
* Move code to Alice-LG GitHub organization
* Include caching information alongside ttl
* Repair endpoint 'protocols'
* Documentation on interpretation of route count numbers
* Improve example configuration
* Caching of parsed responses from birdc.
  Eliminates an additional parser run for cache hits.
* Fix quotes in arguments of birdc commands in Routes{Table,Lookup}* methods.
  This eliminates the "IP address expected" error in BIRD.
2019-02-22 14:09:27 +01:00
Patrick Seeburger
980fcff9c2 Changed the data structure for the extended communities to be a single
slice of {string, int64, int64} instead of a parsed record.
2019-02-22 14:07:11 +01:00
Patrick Seeburger
95cf1a71af Fixed a bug in the parser that would return an integer of the wrong type
(int vs. int64) in an error case.
2019-02-22 14:07:11 +01:00
Patrick Seeburger
7fd2dfd0cf Implement new endpoint /routes/count/primary 2019-02-22 14:07:10 +01:00
Patrick Seeburger
541ea6d84d Fix RoutesDumpPerPeerTable()
Fix RoutesDumpPerPeerTable to return results again and the filtered
routes.
2019-02-22 14:07:10 +01:00
Patrick Seeburger
c1a07cc985 Implemented support for parsing extended communities. 2019-02-22 14:07:10 +01:00
Patrick Seeburger
b7952f9061 Fix TestParseProtocolBgp()
Fix test method TestParseProtocolBgp() to match the output of the
current ProtocolsBgp() method wich returns Parsed records instead of a
string array.
2019-02-22 14:07:09 +01:00
Patrick Seeburger
08c63fc3a3 Fixed /routes/count/protocol Endpoint which was returning no data,
because the wrong parser was called.
2019-02-22 14:07:09 +01:00
Patrick Seeburger
6e8734fa90 Fixed /symbols endpoint. 2019-02-22 14:07:09 +01:00
Johannes Moos
439ee0d5d0 Fix RoutesPrefixed
This version ignored the prefix which is passed as an URL parameter.
2019-02-22 14:07:08 +01:00
Patrick Seeburger
b8b9b5d021 Fixed /routes/count/table Endpoint which was returning routes instead of
a route count because the wrong method was called.
2019-02-22 14:07:08 +01:00
Patrick Seeburger
4ffebab2c4 Fixed race condition between main() and InstallRateLimitReset(). 2019-02-22 14:07:08 +01:00
Benedikt Rudolph
337e2288e8 Add info on show route command 2019-02-22 14:07:07 +01:00
Patrick Seeburger
27fe2969d7 Avoid unnecessary cache writes in /status
Introduce check to avoid unneccesarry cache writes.
2019-02-22 14:07:07 +01:00
Benedikt Rudolph
e8cb296397 Add doc on interpretation of route count numbers
We hope to clarify with the given examples the semantics of route counts.
2019-02-22 14:07:07 +01:00
Patrick Seeburger
8a69b5ba98 Repair 'protocols' endpoint
* repair 'protocols' endpoint to return a meaningful JSON object
* improve example configuration file
2019-02-22 14:07:06 +01:00
Matthias Hannig
712510b3bc include caching information alongside ttl 2019-02-22 14:07:06 +01:00
Daniel Czerwonk
f82f265612 fixed vendoring 2019-02-22 14:06:37 +01:00
Benedikt Rudolph
fe6359aee5 Merge branch 'develop' into master for 1.11.2
Changes since last version:
* Parser: protocol parser can now parse all types of protocols
* Parser: improved parsing of route change statistics
* Add TLS support for the HTTP listener
* Configuration: add new option for TLS 'enable_tls', 'crt' and 'key'
* Improved logging of API requests, similar to a webserver
* Execute birdc in restricted mode 'birdc -r'
2019-02-22 08:26:07 +01:00
Benedikt Rudolph
7e38e5e3bd Merge branch 'develop' into master for 1.11.1
Changes since last version:
* Fix detection of BIRD v2.x.y
* Fix birdc command in RoutesFiltered
* Use worker-threads to parse in parallel.
  This speeds up parsing of large responses e.g. BGP full-table.
* Add flag "worker-pool-size" to control number of threads while parsing
* Configuration: add setting for ttl value to control caching of bird responses
* Configuration: change default location to /etc/birdwatcher
2019-02-22 08:21:00 +01:00
Benedikt Rudolph
0467c9795c Merge branch 'develop' into master for 1.11.0
Changes since last version:
* Parser: support BIRD v2.x with multiprotocol BGP and channels
* Parser: major refactoring
* Parser: decrease memory footprint
  * use io.Reader interface
  * use line-iterator for birdc output
* Detection of BIRD v1.6.x or BIRD v2.x
* Extend test coverage for IPv6
* Tests for BIRD v2.x and IPv4
* Dependencies managed by now managed by dep

Includes an updated CHANGELOG reaching back to 1.10.0.
2019-02-22 08:08:35 +01:00
Benedikt Rudolph
c7171ba183 Merge branch 'feature/memory-cache-housekeeping' into develop 2019-02-21 09:11:34 +01:00
Benedikt Rudolph
ac1c385048 Conclude de-ecixification 2019-02-20 17:27:02 +01:00
Benedikt Rudolph
821a4f869a Change Go import paths for alice-lg github org 2019-02-20 17:25:57 +01:00
Benedikt Rudolph
a171284a9b Change URLs to alice-lg github organization 2019-02-20 17:25:57 +01:00
Benedikt Rudolph
e6ed0cb901 Refactor housekeeping and memory cache
* run Expire() only on MemoryCaches
* make initialization of the cache look pretty
2019-02-20 11:17:13 +01:00
Patrick Seeburger
210d84445e Made the housekeeping routine interval configurable. 2019-02-19 14:06:43 +01:00
Patrick Seeburger
cfa0af57cc Expire cache entries to save memory
* Add a method to expire cache entries, based on the ttl value
* Add a housekeeping method that will periodically expire cache
  entries and also maybe configured to force a GC/SCVG run.
2019-02-18 17:46:32 +01:00
César de Tassis Filho
d5880f7264 Change go get command from ecix to alice-lg on README. 2019-02-11 18:23:18 -02:00
Benedikt Rudolph
43b6a8b8dc Merge branch 'feature/api-redesign' into develop
* simplify RoutesNoExport() to just the birdc command
2019-02-06 08:54:21 +01:00
Benedikt Rudolph
56c378109f Integrate redis backend with the Cache interface 2019-02-28 16:14:13 +01:00
Benedikt Rudolph
cd05592804 Merge redis cache from 'upstream/master' into develop
Leave redis cache the way it is for now. Rework in future commits.
2019-02-28 15:11:31 +01:00
Benedikt Rudolph
00bba801ea Merge branch 'feature/cache-backends' into develop
Add support for various cache backends in anticipation of the merge
with upstream/master that has the redis backend.
2019-02-28 14:17:03 +01:00
Benedikt Rudolph
14c8875ae0 Avoid overwriting existing cache entry
also fix RoutesNoExport.
2019-02-28 13:25:47 +01:00
Benedikt Rudolph
7e02cb23da Add test for memory cache backend
Improve error handling in case value can not be retrieved.
Either return the value and nil, or a value and an error.
2019-02-28 13:02:11 +01:00
Benedikt Rudolph
119b9f6360 Add feature cache backends
Add support for various cache backends in anticipation of the
merge with master that has an additional redis backend.
The current memory based cache backend is refactored to implement
the new interface.
2019-02-28 11:32:40 +01:00
Benedikt Rudolph
ceea37e53b Merge branch 'upstream/master' into develop
Merge changes including version 1.11.0 of upstream.
Remove extra lines in RoutesNoExport()

Conflicts:
       README.md
       * Keep `birdwatcher` in the configuration path
       bird/bird.go
       * Keep the default order of arguments to birdc in RoutesFiltered() and RoutesNoExport()
       birdwatcher.go
       * Keep `gorilla/handlers` for HTTP logging
2019-02-28 09:17:41 +01:00
Patrick Seeburger
14a4ebeaaa Using json.Encoder to write the output JSON instead of using a buffer. 2019-02-05 17:40:59 +01:00
Patrick Seeburger
e5248b21c7 Improved parameter validation. 2019-02-05 17:37:53 +01:00
Patrick Seeburger
1d3118b864 Added missing default value (imported). 2019-02-04 15:48:24 +01:00
Matthias Hannig
837c97da13 prefix cache key for use with birdc and birdc6 2019-01-24 19:01:41 +01:00
Matthias Hannig
1ee6740688 improved caching tests 2019-01-24 19:01:05 +01:00
Matthias Hannig
f0d98a69ef updated example config 2019-01-24 17:17:52 +01:00
Matthias Hannig
15f2561c87 use redis cache if configured 2019-01-24 17:16:35 +01:00
Matthias Hannig
8552547afa configure redis caching 2019-01-24 17:16:19 +01:00
Matthias Hannig
52f5e9506a use redis caching when available 2019-01-24 17:15:54 +01:00
Matthias Hannig
1518f64cd4 added redis cache helper 2019-01-24 17:15:26 +01:00
Patrick Seeburger
c4dfeb253d API redesign - make birdwatcher more generic
Removed all high level functionality e.g. endpoints with multiple
invocations of birdc.
Add new endpoints which are required to duplicate the removed
functionality within Alice-LG.
2019-01-18 18:10:06 +01:00
Matthias Hannig
5872eeb5e8 version bump 2018-11-29 15:28:19 +01:00
Matthias Hannig
2a17304682 fixed command syntax 2018-11-29 15:28:00 +01:00