aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
Commit message (Collapse)AuthorAgeFilesLines
* Exporter/OcAgent: Add a fake implementation of TraceService. (#1481)Yang Song2018-10-081-0/+2
| | | | | | * Exporter/OcAgent: Add a fake impl of TraceService. * Move the fake server impl to test.
* Add dropwizard contrib (#1423)Mayur Kale2018-10-081-0/+3
| | | | | | | | | | * Add dropwizard metrics producer * Use Summary Type * Fix reviews * Fix reviews
* Update dependencies. (#1474)Yang Song2018-09-271-7/+7
| | | | | | * Update gradle plugin versions. * Update Gogle Cloud and Auth versions.
* Exporter/OCAgent: Move TraceProtoUtils to exporter. (#1470)Yang Song2018-09-241-1/+0
|
* Exporter: Start adding OC-Agent Trace Exporter. (#1455)Yang Song2018-09-241-0/+1
|
* Contrib: Add opencensus-contrib-opencensus-proto-util. (#1459)Yang Song2018-09-201-0/+3
| | | | | | * Contrib: Add opencensus-contrib-opencensus-proto-util. * Update CHANGELOG.
* Start 0.17.0 development cycle (#1429)sebright2018-09-141-1/+1
|
* Add opencensus-contrib-log-correlation-log4j2 to the list of released ↵sebright2018-09-141-4/+1
| | | | | artifacts. (#1415) This commit also updates the changelog.
* Make jmh available for all subprojects. (#1425)Bogdan Drutu2018-09-111-1/+35
|
* Change spring-sleuth package to include version. (#1417)Bogdan Drutu2018-09-071-1/+1
|
* Rename opencensus-contrib-log-correlation-log4j artifact/package to use ↵sebright2018-09-061-2/+2
| | | | | | | | log4j2. (#1411) This commit renames the artifact to opencensus-contrib-log-correlation-log4j2 and renames the package to io.opencensus.contrib.logcorrelation.log4j2. The name change emphasizes that the artifact only works with Log4j 2 and allows us to add support for other versions of Log4j in the future.
* Checker Framework: 2.5.4 -> 2.5.5 (#1412)sebright2018-09-061-1/+1
|
* Spring sleuth (#1378)Dino Oliva2018-09-051-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Initial import of OpenCensus/Sleuth integration. * Minor fixes for integration with master. * Adds a README. * Removes hardcoded dependencies in build file. * Adds contrib to spring_sleuth file path. * Updates package names appropriately based on file renames. * Fixes build paths. * Fixes for build checks. * Mark as experimental. * Minor fixes for build files (space vs tab). * Minor fixes for build files (space vs tab). * Update README to absolve Spring Sleuth team of any responsibility for this spring_sleuth plugin. * Minor fixes for import control (space vs tab). * Tag public classes @since 0.16 * Adds javadoc for public methods not already documented. * Updates OpenCensusSleuthTracer to pass nullness checks. * Fixes for formatting issues. * Fixes for typos. * Suppresses the check return value warning added by gRPC. * Suppresses the check return value warning added by gRPC.
* Update gRPC version to 1.14. (#1404)Yang Song2018-08-311-1/+1
| | | | | | | | * Update gRPC version to 0.14. * Fix fingbugs warning. * Add more comments about the workaround.
* Avoid doing string formatting when calling checkArgument. (#1394)Bogdan Drutu2018-08-281-0/+6
|
* Start adding log correlation for Log4j. (#1371)sebright2018-08-271-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | This commit takes the approach of implementing Log4j's ContextDataInjector. It inserts three keys into each log event: "`openCensusTraceId`", "`openCensusSpanId`", and "`openCensusTraceSampled`". The tracing data can be accessed with LogEvent.getContextData() or included in a layout. See https://logging.apache.org/log4j/2.x/log4j-core/apidocs/org/apache/logging/log4j/core/ContextDataInjector.html. Here is an example of a pattern layout that includes all three tracing fields and a log entry that could be produced by the layout: Pattern layout: "`%d{HH:mm:ss.SSS} [%t] traceId=%X{openCensusTraceId} spanId=%X{openCensusSpanId} sampled=%X{openCensusTraceSampled} %-5level %logger{36} - %msg%n`" Log entry: "`20:45:52.929 [main] traceId=0af7a7bef890695f1c5e85a8e7290164 spanId=d3f07c467ec2fbb2 sampled=true WARN io.opencensus.contrib.logcorrelation.log4j.demo.OpenCensusLog4jLogCorrelationDemo - my log message`" The ContextDataInjector implementation must be specified with a system property, i.e., "`-Dlog4j2.contextDataInjector=io.opencensus.contrib.logcorrelation.log4j.OpenCensusTraceContextDataInjector`". The system property "`io.opencensus.contrib.logcorrelation.log4j.OpenCensusTraceContextDataInjector.spanSelection`" controls whether tracing data is added to all spans, no spans, or only sampled spans.
* Build: Update Cloud Auth, Beta and GA versions. (#1374)Yang Song2018-08-201-3/+3
|
* checkstyle: 8.0 -> 8.12 (#1369)sebright2018-08-161-1/+1
| | | | This commit also merges new changes to checkstyle.xml and fixes new checkstyle warnings related to Javadocs.
* Metrics: Move metrics to opencensus-api. (#1346)Yang Song2018-08-101-2/+0
| | | | | | * Metrics: Move to api. * Update package-info to warn users on using metrics.
* Checker Framework: 2.5.3 -> 2.5.4 (#1355)sebright2018-08-011-1/+1
|
* Fix incorrect argument to Checker Framework, and fix nullness warnings. (#1354)sebright2018-08-011-1/+1
| | | | | | 709d97aa321d5729988fd63b960bbece04cfba10 modified the -AskipDefs argument to the Checker Framework (a regular expression) in a way that caused it to skip checking all files. This commit fixes the regular expression and the new Checker Framework warnings.
* Split findBugs annotations and jsr305 versions. (#1335)Yang Song2018-07-261-4/+5
|
* moved spring_test down to the test dependencies blocksavaki2018-07-211-1/+1
|
* added initial support for spring annotationssavaki2018-07-211-0/+8
|
* Update dependencies. (#1328)Yang Song2018-07-201-1/+1
|
* Add metric components for export and main package and metric producer. (#1322)Bogdan Drutu2018-07-201-1/+2
| | | | | | | | * Add metric components for export and main package and metric producer. * Solve first round of comments. * Minor comments fixes.
* Update google java formatter tool and plugin version. (#1326)Bogdan Drutu2018-07-191-2/+2
|
* Update Cloud Beta and GA version in build.gradle. (#1312)Yang Song2018-07-131-2/+2
|
* Contrib: Add an exemplar_util artifact to help record special exemplars. (#1297)Yang Song2018-07-121-0/+1
| | | | | | | | | | | | | | * Stats: Add attachment key for TraceId and SpanId. * Move the keys to an independent artifact and add methods for encoding. * Add this change to CHANGELOG. * Update description and tests. * Have one method that takes SpanContext instead of two. * Rename method to putSpanContextAttachments.
* Checker Framework: 2.5.2 -> 2.5.3Kristen Kozak2018-07-101-1/+1
|
* Update Cloud Beta and GA versions. (#1281)Yang Song2018-06-251-2/+2
|
* Start 0.16.0 development cycleKristen Kozak2018-06-201-1/+1
|
* Update Google Cloud version. (#1273)Yang Song2018-06-201-4/+5
| | | | | | * Update Google Cloud version. * Update Cloud Logging version.
* Add opencensus-contrib-log-correlation-stackdriver to list of released ↵Kristen Kozak2018-06-181-2/+1
| | | | artifacts.
* Error Prone: 2.2.0 -> 2.3.1Kristen Kozak2018-06-131-25/+12
| | | | | | | | | | | | | | | | This commit contains several other changes as part of the upgrade: - Use -XepAllDisabledChecksAsWarnings to enable all available warnings so that we don't need to enable each warning explicitly. - Remove explicit suppression of warnings in generated code, since -XepDisableWarningsInGeneratedCode is now sufficient to suppress all warnings in AutoValue and Protocol Buffer generated classes. - Remove a suppression of "ConstructorLeaksThis", since https://github.com/google/error-prone/pull/789 was fixed. - Fix a few occurrences of "FieldCanBeFinal".
* Remove opencensus-contrib-log-correlation-stackdriver-demo.Kristen Kozak2018-06-121-2/+0
| | | | | The demo project will be moved to https://github.com/census-ecosystem/opencensus-experiments.
* Temporarily remove opencensus-exporter-trace-logging from released artifacts ↵Kristen Kozak2018-06-121-1/+2
| | | | list.
* Upgrade google-cloud-logging and set new LogEntry spanId field.Kristen Kozak2018-06-121-1/+1
|
* Start adding log correlation for Stackdriver Logging.Kristen Kozak2018-06-121-0/+4
|
* Checker Framework: 2.5.1 -> 2.5.2Kristen Kozak2018-06-111-1/+1
|
* Update Google Cloud version. (#1241)Yang Song2018-06-071-1/+1
|
* Metrics: Move Metrics to a separate artifact. (#1216)Yang Song2018-06-051-0/+1
| | | | | | | | * Move Metrics to a separate artifact. * Fix review comments. * Update one TODO about the naming of the artifact.
* Start 0.15.0 development cyclesongy232018-06-041-1/+1
|
* Update grpc and jagger. (#1222)Bogdan Drutu2018-05-311-4/+5
|
* Add util contrib package for AppEngine standard. (#1214)Bogdan Drutu2018-05-301-1/+11
|
* Upgrade Prometheus to the latest version. (#1217)Yang Song2018-05-301-1/+1
|
* Update Google Cloud and Auth version. (#1191)Yang Song2018-05-091-2/+2
|
* Checker Framework: 2.5.0 -> 2.5.1Kristen Kozak2018-05-021-1/+1
| | | | | | 2.5.1 includes a fix for https://github.com/typetools/checker-framework/issues/1838. This commit also adds a few more @Nullable annotations that are required now.
* Start 0.14.0 development cycle (#1157)Yang Song2018-04-271-1/+1
|
* Move monitored resource detection utils to a separate artifact. (#1135)Yang Song2018-04-261-0/+1
| | | | Move monitored resource detection utils to a separate artifact, so that it can be reused by both Stackdriver Monitoring and Stackdriver Trace.