Skip to content

Commit 75b4ea9

Browse files
committed
s/next/latest/g
1 parent 32f2aaf commit 75b4ea9

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

docs/integration-java.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ Then add the following code to your application:
7373
</TabItem>
7474
</Tabs>
7575

76-
You can also optionally replace some pyroscope components
76+
You can also optionally replace some pyroscope components
7777

7878
```java
7979
PyroscopeAgent.start(
8080
new PyroscopeAgent.Options.Builder(config)
8181
.setExporter(snapshot -> {
8282
// Your custom export/upload logic may go here
83-
// It is invoked every 10 seconds by default with snapshot of
83+
// It is invoked every 10 seconds by default with snapshot of
8484
// profiling data
8585
})
8686
.setLogger((l, msg, args) -> {
@@ -111,7 +111,7 @@ java -javaagent:pyroscope.jar -jar app.jar
111111

112112
### Configuration
113113

114-
When you start pyroscope as javaagent or obtain configuration by `Config.build()` pyroscope searches
114+
When you start pyroscope as javaagent or obtain configuration by `Config.build()` pyroscope searches
115115
for configuration in multiple sources: system properties, environment variables, pyroscope.properties file. Properties keys has same name as environment variables, but lowercased and replaced `_` with `.`, so `PYROSCOPE_FORMAT` becomes `pyroscope.format`
116116

117117

@@ -188,9 +188,9 @@ If your Phlare server has multi-tenancy enabled, you'll need to configure a tena
188188
### Java profiling examples
189189

190190
Check out the following resources to learn more about Java profiling:
191-
- [Java examples](https://github.com/pyroscope-io/pyroscope/tree/main/examples/java-jfr/rideshare)
191+
- [Java examples](https://github.com/pyroscope-io/pyroscope/tree/main/examples/java/rideshare)
192192
- [Java Demo](https://demo.pyroscope.io/?query=rideshare-app-java.itimer%7B%7D) showing Java example with tags
193-
- [Java blog post](https://github.com/pyroscope-io/pyroscope/tree/main/examples/java-jfr/rideshare#readme)
193+
- [Java blog post](https://github.com/pyroscope-io/pyroscope/tree/main/examples/java/rideshare#readme)
194194

195195
<Flamegraph profileData={JavaNative}></Flamegraph>
196196

docs/storage-design.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /storage-design
88
## Storage Efficiency
99

1010
:::note
11-
This article is relevant for pre-v1.0.0 versions of Pyroscope. Since acquisition of Pyroscope in March 2023 we've been working on a new horizontally scalable storage engine that was released in v1.0.0. You can learn more about it [here](https://grafana.com/docs/pyroscope/next/reference-pyroscope-architecture/). This article is here for historical purposes.
11+
This article is relevant for pre-v1.0.0 versions of Pyroscope. Since acquisition of Pyroscope in March 2023 we've been working on a new horizontally scalable storage engine that was released in v1.0.0. You can learn more about it [here](https://grafana.com/docs/pyroscope/latest/reference-pyroscope-architecture/). This article is here for historical purposes.
1212
:::
1313

1414
The challenge with continuous profiling is that if you just take frequent chunks of profiling data, compress it, and store it somewhere, it becomes:

docs/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ There are 2 options: increase the disk and free some data.
3131

3232
#### Free some data
3333
:::warning
34-
We don't guarantee pyroscope will be able to deal with this correctly. Only use this as a last resort. Preferrably do a backup first.
34+
We don't guarantee pyroscope will be able to deal with this correctly. Only use this as a last resort. Preferrably do a backup first.
3535
:::
3636

3737
It depends on where you are running, for kubernetes you can overwrite the Deployment's [`args` to run a dummy command](https://github.com/pyroscope-io/helm-chart/blob/bfe876922f6970dc8ccf38c558957de76ce746eb/chart/pyroscope/templates/deployment.yaml#L32-L35) (like `sleep infinity`).

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ module.exports = {
103103
},
104104
{
105105
label: 'Deployment Guide',
106-
href: 'https://grafana.com/docs/pyroscope/next/deploy-kubernetes/',
106+
href: 'https://grafana.com/docs/pyroscope/latest/deploy-kubernetes/',
107107
},
108108
],
109109
},

redirects.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
"docs/ebpf": "https://grafana.com/docs/pyroscope/latest/configure-client/grafana-agent/ebpf/",
4747
"docs/golang-old": "https://grafana.com/docs/pyroscope/latest/configure-client/language-sdks/go_push/",
4848
"docs/golang-pull-mode": "https://grafana.com/docs/pyroscope/latest/configure-client/grafana-agent/go_pull/",
49-
"docs/golang": "https://grafana.com/docs/pyroscope/next/configure-client/language-sdks/go_push/",
49+
"docs/golang": "https://grafana.com/docs/pyroscope/latest/configure-client/language-sdks/go_push/",
5050
"docs/grafana-plugins": "https://grafana.com/docs/grafana/latest/datasources/grafana-pyroscope/",
51-
"docs/how-pyroscope-works": "https://grafana.com/docs/pyroscope/next/get-started/",
52-
"docs/installing-pyroscope-overview": "https://grafana.com/docs/pyroscope/next/get-started/",
51+
"docs/how-pyroscope-works": "https://grafana.com/docs/pyroscope/latest/get-started/",
52+
"docs/installing-pyroscope-overview": "https://grafana.com/docs/pyroscope/latest/get-started/",
5353
"docs/java": "https://grafana.com/docs/pyroscope/latest/configure-client/language-sdks/java/",
5454
"docs/kubernetes-helm-chart": "https://grafana.com/docs/pyroscope/latest/deploy-kubernetes/helm/",
5555
"docs/nodejs": "https://grafana.com/docs/pyroscope/latest/configure-client/language-sdks/nodejs/",

src/theme/DocItem/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default function DocItem(props) {
8585
In September 2023, <code>Grafana Pyroscope v1.0.0</code> was released.
8686
</p>
8787
<p>
88-
This documentation covers Pyroscope versions preceding <code>v1.0.0</code>. We're keeping it for the time being, but we recommend that you upgrade to <a href="https://grafana.com/docs/pyroscope/next/upgrade-guide/">Grafana Pyroscope v1.0.0 or higher</a> and switch to the new <a href="https://grafana.com/docs/pyroscope/latest/">Grafana Pyroscope Docs</a> for most up-to-date documentation.
88+
This documentation covers Pyroscope versions preceding <code>v1.0.0</code>. We're keeping it for the time being, but we recommend that you upgrade to <a href="https://grafana.com/docs/pyroscope/latest/upgrade-guide/">Grafana Pyroscope v1.0.0 or higher</a> and switch to the new <a href="https://grafana.com/docs/pyroscope/latest/">Grafana Pyroscope Docs</a> for most up-to-date documentation.
8989
</p>
9090
</div></div>
9191
{/*

0 commit comments

Comments
 (0)