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

chore: Update README, CHANGELOG and examples #172

Merged
merged 2 commits into from
Aug 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## unreleased

## 0.0.6 - 2019-08-26

- Fixed TypeError in Safari, thanks @backjo (#167)

## 0.0.5 - 2019-08-09

- Fixes to interaction tracker.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ trace sample rate via an `ocSampleRate` global variable as well.
// By default this is set to sample 1/10000 requests.
ocSampleRate = 1.0;
</script>
<script src="https://unpkg.com/@opencensus/[email protected].5/dist/initial-load-all.js"
integrity="sha384-Yjf1HlvVBAtNApsvjYTZEJj9zLfUCfSJkLMseUTmRivMj92Ri2OKnfb2kkyGqdil"
<script src="https://unpkg.com/@opencensus/[email protected].6/dist/initial-load-all.js"
integrity="sha384-i4hXJgWcpVndlEbWiKDJq59jlTuis+dNeFlf0XcPxM7We2mpA5msdPCFnFaPeI0w"
async crossorigin="anonymous">
</script>
</body>
Expand Down Expand Up @@ -248,7 +248,7 @@ trace sample rate via an `ocSampleRate` global variable as well.
(e.g. React, etc.):
```html
...
<script src="https://unpkg.com/@opencensus/[email protected].5/dist/tracing-all-with-zone.js"
<script src="https://unpkg.com/@opencensus/[email protected].6/dist/tracing-all-with-zone.js"
integrity="sha384-0Y5xp9Nl9nmXYL7GgTb0sz8HmFxRYlh+8wWgks5qb1NCg9h7XiKogm15uIbVaXrN"
async crossorigin="anonymous">
</script>
Expand All @@ -258,7 +258,7 @@ trace sample rate via an `ocSampleRate` global variable as well.
- If your application uses the `Zone.js` library, the case for `Angular` apps:
```html
...
<script src="https://unpkg.com/@opencensus/[email protected].5/dist/tracing-all-zone-peer-dep.js"
<script src="https://unpkg.com/@opencensus/[email protected].6/dist/tracing-all-zone-peer-dep.js"
integrity="sha384-IPZy89j7zcXj4WDrW+XWl2mRrN7tqhdMcHgRsvK+dVNrofnyxPvI5OcX1kni4FWt"
async crossorigin="anonymous">
</script>
Expand Down Expand Up @@ -334,8 +334,8 @@ variable. The `traceparent` variable should be in the
// We don't need to specify `ocSampleRate` since the trace sampling decision
// is coming from the `traceparent` global variable instead.
</script>
<script src="https://unpkg.com/@opencensus/[email protected].5/dist/initial-load-all.js"
integrity="sha384-VPY9XX7tiXeLekDPFXkfO2AqNpLTCNOzfXxVghzoVP05PXrG+wtHOW2kOP2ggO9o"
<script src="https://unpkg.com/@opencensus/[email protected].6/dist/initial-load-all.js"
integrity="sha384-i4hXJgWcpVndlEbWiKDJq59jlTuis+dNeFlf0XcPxM7We2mpA5msdPCFnFaPeI0w"
async crossorigin="anonymous">
</script>
</body>
Expand All @@ -356,8 +356,8 @@ In case you want to use trace user interactions:
// We don't need to specify `ocSampleRate` since the trace sampling decision
// is coming from the `traceparent` global variable instead.
</script>
<script src="https://unpkg.com/@opencensus/[email protected].5/dist/tracing-all-with-zone.js"
integrity="sha384-VPY9XX7tiXeLekDPFXkfO2AqNpLTCNOzfXxVghzoVP05PXrG+wtHOW2kOP2ggO9o"
<script src="https://unpkg.com/@opencensus/[email protected].6/dist/tracing-all-with-zone.js"
integrity="sha384-0Y5xp9Nl9nmXYL7GgTb0sz8HmFxRYlh+8wWgks5qb1NCg9h7XiKogm15uIbVaXrN"
async crossorigin="anonymous">
</script>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
spec:
containers:
- name: oc-agent-container
image: omnition/opencensus-agent:0.1.6
image: omnition/opencensus-agent:0.1.10
volumeMounts:
- name: oc-agent-config-vol
readOnly: true
Expand Down
99 changes: 51 additions & 48 deletions examples/user_interaction/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/user_interaction/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"metrics"
],
"dependencies": {
"@opencensus/web-instrumentation-zone": "^0.0.5",
"@opencensus/web-instrumentation-zone": "^0.0.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
Expand Down
Loading