agent/common/v1: use exporter_version, core_library_version in LibraryInfo (#100)

By using:
* `exporter_version`(previously `version`, but same field id: 2)
* `core_library_version` -- version of OpenCensus Library

we can succinctly convey information to the agent about the
exporter and core libraries used.

Updates #99
pull/101/head
Emmanuel T Odeke 6 years ago committed by Yang Song
parent ee2e6d8d42
commit f6d872a6e9
  1. 5
      opencensus/proto/agent/common/v1/common.proto

@ -83,7 +83,10 @@ message LibraryInfo {
Language language = 1;
// Version of Agent exporter of Library.
string version = 2;
string exporter_version = 2;
// Version of OpenCensus Library.
string core_library_version = 3;
}
// Additional service information.

Loading…
Cancel
Save