You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by li...@apache.org on 2020/12/12 19:34:13 UTC

[skywalking-satellite] branch delete-plugin-framework-examples updated (891e514 -> c987965)

This is an automated email from the ASF dual-hosted git repository.

liujiapeng pushed a change to branch delete-plugin-framework-examples
in repository https://gitbox.apache.org/repos/asf/skywalking-satellite.git.


    from 891e514  add build in makefile
     add c987965  refactoring(add server concept) & polish codes & add docs

No new revisions were added by this update.

Summary of changes:
 configs/satellite_config.yaml                      |  20 ++-
 docs/design/module_design.md                       | 127 +++++++++++++++
 docs/design/module_structure.md                    |  23 ++-
 docs/design/plugin_structure.md                    |  32 ++--
 docs/project_structue.md                           | 117 +++++++------
 internal/pkg/event/event.go                        |   5 +-
 internal/pkg/plugin/definition.go                  |   8 +-
 internal/satellite/boot/boot.go                    |  48 ++----
 internal/satellite/config/loader_test.go           |  47 +++---
 internal/satellite/config/satellite_config.go      |  26 ++-
 internal/satellite/module/buffer/buffer.go         |  43 ++---
 internal/satellite/module/buffer/buffer_test.go    |  10 +-
 internal/satellite/module/clientmanager.go         | 181 ---------------------
 internal/satellite/module/gatherer.go              | 108 ------------
 .../satellite/module/gatherer/api/config.go        |  25 ++-
 .../satellite/module/gatherer/api/gatherer.go      |  17 +-
 internal/satellite/module/gatherer/create.go       |  61 +++++++
 .../satellite/module/gatherer/fetcher_gatherer.go  |  89 ++++++++++
 .../satellite/module/gatherer/receiver_gatherer.go |  92 +++++++++++
 .../satellite/module/processor/api/config.go       |  11 +-
 .../satellite/module/processor/api/processor.go    |  14 +-
 .../processor/crate.go}                            |  35 ++--
 .../satellite/module/{ => processor}/processor.go  |  66 +++-----
 .../satellite/module/sender/api/config.go          |  25 ++-
 .../satellite/module/sender/api/sender.go          |  11 +-
 internal/satellite/module/sender/create.go         |  51 ++++++
 internal/satellite/module/{ => sender}/sender.go   |  96 ++++-------
 .../satellite/sharing/sharing_plugins.go           |  54 +++---
 plugins/README.md                                  |  60 -------
 plugins/client/api/client.go                       |  25 ++-
 plugins/client/api/client_repository.go            |   6 +-
 .../api/collector.go => fetcher/api/fetcher.go}    |  13 +-
 .../api/fetcher_repository.go}                     |  20 +--
 plugins/init.go                                    |  13 +-
 plugins/queue/api/queue.go                         |  26 ++-
 .../api/parser.go => receiver/api/receiver.go}     |  13 +-
 .../api/receiver_repository.go}                    |  20 +--
 plugins/{collector => receiver}/log-grpc/README.md |   0
 .../{filter/api/filter.go => server/api/server.go} |  18 +-
 .../api/server_repository.go}                      |  20 +--
 40 files changed, 857 insertions(+), 819 deletions(-)
 create mode 100644 docs/design/module_design.md
 delete mode 100644 internal/satellite/module/clientmanager.go
 delete mode 100644 internal/satellite/module/gatherer.go
 copy plugins/client/api/client.go => internal/satellite/module/gatherer/api/config.go (57%)
 copy plugins/parser/api/parser.go => internal/satellite/module/gatherer/api/gatherer.go (68%)
 create mode 100644 internal/satellite/module/gatherer/create.go
 create mode 100644 internal/satellite/module/gatherer/fetcher_gatherer.go
 create mode 100644 internal/satellite/module/gatherer/receiver_gatherer.go
 copy plugins/filter/api/filter.go => internal/satellite/module/processor/api/config.go (76%)
 copy plugins/filter/api/filter.go => internal/satellite/module/processor/api/processor.go (70%)
 copy internal/satellite/{config/satellite_config.go => module/processor/crate.go} (52%)
 rename internal/satellite/module/{ => processor}/processor.go (53%)
 copy plugins/collector/api/collector_repository.go => internal/satellite/module/sender/api/config.go (57%)
 copy plugins/filter/api/filter.go => internal/satellite/module/sender/api/sender.go (76%)
 create mode 100644 internal/satellite/module/sender/create.go
 rename internal/satellite/module/{ => sender}/sender.go (61%)
 copy cmd/command.go => internal/satellite/sharing/sharing_plugins.go (50%)
 delete mode 100644 plugins/README.md
 rename plugins/{collector/api/collector.go => fetcher/api/fetcher.go} (73%)
 rename plugins/{collector/api/collector_repository.go => fetcher/api/fetcher_repository.go} (65%)
 copy plugins/{parser/api/parser.go => receiver/api/receiver.go} (71%)
 copy plugins/{parser/api/parser_repository.go => receiver/api/receiver_repository.go} (65%)
 rename plugins/{collector => receiver}/log-grpc/README.md (100%)
 copy plugins/{filter/api/filter.go => server/api/server.go} (70%)
 copy plugins/{filter/api/filter_repository.go => server/api/server_repository.go} (67%)