aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Update release versions for all readme and build files. (#1452)sebright2018-09-181-6/+6
|
* Update release versions for all readme and build files. (#1435)sebright2018-09-151-6/+6
| | | | | This commit also updates the gRPC dependency to 1.13.1 in the Maven and Gradle examples in order to resolve a dependency conflict in the Maven build.
* Update release versions for all readme and build files. (#1398)Yang Song2018-08-281-6/+6
|
* Update 'Add dependencies' section in README. (#1325)Yang Song2018-07-191-2/+3
| | | | | | * Update 'Add dependencies' section in README. * Revise the changes and add a pointer to application integration instead.
* Update and add imports to stats example in readme.Kristen Kozak2018-07-111-19/+36
| | | | | | | | Changes in this commit: - Remove use of deprecated AggregationWindow. - Make methods public to show that they could be called by code that isn't part of the example. - Rename the class for consistency with the tracing example. - Run google-java-format.
* Format and add imports to tracing example in readme.Kristen Kozak2018-07-111-7/+13
|
* Add specification on Bazel build in README. (#1302)Yang Song2018-07-101-0/+50
| | | | | | | | * Add specification on Bazel build in README. * Address feedback. * Bazel build should have impl_core as runtime_deps too.
* Readme: Update library stage to Beta. (#1290)Yang Song2018-06-291-1/+19
| | | | | | | | * Update library stage to Beta. * Add specification about versioning. * Remove Alpha and add more description on Beta and GA.
* Fix broken link in README.md (#1278)Reiley Yang2018-06-211-1/+1
|
* Update release versions for all readme and build files. (#1277)Yang Song2018-06-211-6/+6
| | | | | | * Update release versions for all readme and build files. * Fix the gRPC version conflict for example mvn build.
* Update release versions for all readme and build files. (#1237)Yang Song2018-06-051-6/+6
| | | | | | | | * Update release versions for all readme and build files. * Manually update gRPC version in example build. * Remove a stale TODO.
* Update release versions for all readme and build files. (#1190)Yang Song2018-05-081-6/+6
|
* Update release versions for all readme and build files. (#1178)Yang Song2018-05-021-6/+6
|
* Update release versions for readme and build files. (#1160)Yang Song2018-04-271-6/+6
| | | Update release versions for readme and build files.
* Update release versions for all readme and build files. (#1129)Yang Song2018-04-131-6/+6
|
* Update README based on customers' feedback (#1109)Yang Song2018-04-021-3/+9
| | | | | | | | * Update tracing code snippet. * Fix a TODO. * Explain why to set record events and sampler.
* Fix warning-throwing README.md instructions (#1093)Jean de Klerk2018-03-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix warning-throwing README.md instructions `TagKey.create("my.org/keys/frontend")` throws: ``` WARNING: ApiException thrown when creating MetricDescriptor. com.google.api.gax.rpc.InvalidArgumentException: io.grpc.StatusRuntimeException: INVALID_ARGUMENT: Field metricDescriptor.labels[0].key had an invalid value of "my.org/keys/frontend": Label key contains invalid characters. at com.google.api.gax.rpc.ApiExceptionFactory.createException(ApiExceptionFactory.java:49) at com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:72) at com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:60) at com.google.api.gax.grpc.GrpcExceptionCallable$ExceptionTransformingFuture.onFailure(GrpcExceptionCallable.java:95) at com.google.api.core.ApiFutures$1.onFailure(ApiFutures.java:61) at com.google.common.util.concurrent.Futures$CallbackListener.run(Futures.java:1341) at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:398) at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:1027) at com.google.common.util.concurrent.AbstractFuture.complete(AbstractFuture.java:868) at com.google.common.util.concurrent.AbstractFuture.setException(AbstractFuture.java:713) at io.grpc.stub.ClientCalls$GrpcFuture.setException(ClientCalls.java:492) at io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:467) at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:41) at io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:684) at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:41) at io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:392) at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:475) at io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:63) at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:557) at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$600(ClientCallImpl.java:478) at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:590) at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) Caused by: io.grpc.StatusRuntimeException: INVALID_ARGUMENT: Field metricDescriptor.labels[0].key had an invalid value of "my.org/keys/frontend": Label key contains invalid characters. at io.grpc.Status.asRuntimeException(Status.java:526) ... 19 more ``` All non-alphanumeric characters are not allowed. * Update README.md
* Fix README.md missing paren (#1089)Jean de Klerk2018-03-261-1/+1
|
* Update README, RELEASING and all/build.gradle (#1064)Yang Song2018-03-161-0/+2
|
* Change MBy to By units. (#1058)easy2018-03-151-2/+2
| | | This reflects the default gRPC views which use bytes as units.
* Add quick start example to README (#1053)Yang Song2018-03-061-3/+68
|
* Update release versions for all readme and build files. (#1033)Yang Song2018-02-271-6/+6
|
* Update release versions for all readme and build files. (#1010)Yang Song2018-02-191-6/+6
|
* Update READMEs to include Prometheus exporter. (#996)Yang Song2018-02-161-0/+2
|
* First proof of concept for Instana integration (#972)Fabian Lange2018-02-091-5/+7
|
* Add Codecov status badge to readme.Kristen Kozak2018-02-051-0/+3
|
* Remove Coveralls code coverage (closes #791).Kristen Kozak2018-02-051-3/+0
|
* Update release versions for all readme and build files. (#961)Hailong Wen2018-01-241-6/+6
|
* Update script in RELEASING.md and use them to update release version in all ↵Hailong Wen2018-01-221-6/+6
| | | | readmes and build files. (fixes #941) (#946)
* SignalFx stats exporter (#903)Maxime Petazzoni2018-01-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | * SignalFx stats exporter This commit implements a stats exporter that sends stats as metrics to SignalFx (https://signalfx.com). It is modeled on the Stackdriver stats exporter in that it uses a background worker thread that periodically inspects all the views and constructs datapoints to send to SignalFx for their corresponding metric timeseries (identified by the view name as metric name, and tag key/value pairs as dimensions). * Review feedback (squash me) * More review feedback (squash me) * Use a configuration builder pattern (squash me) * Fixes for checker framework compliance (squash me) * Review feedback (squash me) * Remove support for AggregationWindow.Interval (squash me)
* Update versions for all README files (#888)Yang Song2017-12-061-6/+6
|
* Update versions for all README files (#876)Yang Song2017-12-041-6/+6
|
* Add badge to javadoc from javadoc.io. (#860)Bogdan Drutu2017-11-301-0/+3
|
* Update OpenCensus version for all README files (#849)Yang Song2017-11-291-6/+6
|
* Update version in README to 0.9.0 (#818)Yang Song2017-11-171-6/+6
|
* Add Stackdriver stats exporter to README (#796)Yang Song2017-11-091-1/+2
|
* Fix exporters links and add Zipkin link. (#770)Bogdan Drutu2017-11-021-3/+7
|
* Update versions in the README files. (#769)Bogdan Drutu2017-11-021-6/+6
|
* Update AppVeyor link for change in AppVeyor account name.Kristen Kozak2017-10-031-1/+1
|
* Add gitter and coverage badges to the main page. (#688)Bogdan Drutu2017-09-301-2/+11
|
* Change version in all the README files. (#664)Bogdan Drutu2017-09-221-6/+6
|
* Add details about how to link/setup the library. (#573)Bogdan Drutu2017-08-291-5/+109
| | | | | | * Add details about how to link/setup the library. * Update based on feedback.
* Update README to extract links and add maven release badge. (#504)Bogdan Drutu2017-08-111-1/+8
|
* Update repo release details and status badges. (#384)Bogdan Drutu2017-06-211-1/+1
|
* Move internal & common & trace to the new package io.opencensus (#339)Bogdan Drutu2017-06-061-4/+4
|
* Warn that the API is unstable in README.md.Kristen Kozak2017-05-251-1/+2
|
* Update Appveyor build status link for census-instrumentation organization.Kristen Kozak2017-05-191-1/+1
|
* Update Travis build status link for census-instrumentation organization.Kristen Kozak2017-05-181-1/+1
|
* Show AppVeyor build status for master branch.Kristen Kozak2017-04-131-1/+1
|
* Add AppVeyor status badge to readme.Kristen Kozak2017-03-301-1/+1
|