Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
agent/common/v1: use exporter_version, core_library_version in Librar…
Browse files Browse the repository at this point in the history
…yInfo (#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
  • Loading branch information
Emmanuel T Odeke authored and songy23 committed Sep 9, 2018
1 parent ee2e6d8 commit f6d872a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion opencensus/proto/agent/common/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f6d872a

Please sign in to comment.