Skip to content

Commit

Permalink
Recommend shallow git cloning. Fixes: #1452
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbz00 committed Jan 13, 2024
1 parent a162bc6 commit 2a44a86
Show file tree
Hide file tree
Showing 109 changed files with 130 additions and 130 deletions.
4 changes: 2 additions & 2 deletions blog/2019-08-31-monitor-gunicorn-django-in-prometheus.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ We shall be deploying our web application using kubernetes deployment. However,

Run following command at project root directory

$ git clone https://github.com/ankitnayan/django_sample_project.git
$ git clone --single-branch --depth 1 https://github.com/ankitnayan/django_sample_project.git

$ cd django_sample_project

Expand All @@ -83,7 +83,7 @@ The image is also available at [https://hub.docker.com/r/ankitnayan/django_sampl

Run below commands to run the application as docker container:

$ git clone https://github.com/ankitnayan/django_sample_project.git
$ git clone --single-branch --depth 1 https://github.com/ankitnayan/django_sample_project.git
$ cd django_sample_project
$ docker run -ti -p 8000:8000 -v `pwd`:/usr/src/app ankitnayan/django_sample_project:quantiles_v1

Expand Down
2 changes: 1 addition & 1 deletion blog/2019-11-30-ha-prometheus-cortex-cassandra.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Setup Cassandra in a cluster (3 replicas for the Cassandra):

Setup Cortex in a cluster:

git clone https://github.com/kanuahs/cortex-demo.git
git clone --single-branch --depth 1 https://github.com/kanuahs/cortex-demo.git
cd cortex-demo/

`kubectl apply -f k8s-cassandra/` - this will deploy various components of Cortex to your cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Let's divide this tutorial in 2 parts:
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
6 changes: 3 additions & 3 deletions blog/2021-06-02-python-application-monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ We have set up a <a href = "https://github.com/SigNoz/sample-flask-app" rel="noo
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -111,7 +111,7 @@ The application list shown in the dashboard is from a sample app called HOT R.O.
From your terminal use the following command to clone SigNoz's GitHub repository.
```
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
```
3. **Update path to signoz/deploy and install SigNoz**<br></br>
Expand Down Expand Up @@ -179,7 +179,7 @@ Step 1. Clone sample Flask app repository<br></br>
From your terminal use the following command to clone sample Flask app GitHub repository.

```
git clone https://github.com/SigNoz/sample-flask-app.git
git clone --single-branch --depth 1 https://github.com/SigNoz/sample-flask-app.git
```

Step 2. Update path to sample-flask-app<br></br>
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-06-16-clickhouse-storage-monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ As we are self-hosted and open source, you can try SigNoz out in a matter of a f

You can get started with SigNoz with just three commands at your terminal:

$ git clone -b main https://github.com/SigNoz/signoz.git
$ git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
$ cd signoz/deploy/
$ ./install.sh

Expand Down
2 changes: 1 addition & 1 deletion blog/2021-08-18-opentelemetry-nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Steps to get started with OpenTelemetry for a Nodejs application:
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-09-04-opentelemetry-tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" >Docker Engine</a> before running the install script.
```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-09-08-jaeger-vs-opentracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" >Docker Engine</a> before running the install script.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-09-09-jaeger-vs-newrelic.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Some of the things SigNoz can help you track:
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-09-16-jaeger-vs-tempo.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Some of the things SigNoz can help you track:
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-09-22-jaeger-microservices.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank">Docker Engine</a> before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-10-18-datadog-vs-newrelic.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ Some of the things SigNoz can help you track:
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-11-18-opentelemetry-express.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ OpenTelemetry is a set of tools, APIs, and SDKs used to instrument applications
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
4 changes: 2 additions & 2 deletions blog/2021-11-19-opentelemetry-flask.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ OpenTelemetry is a set of tools, APIs, and SDKs used to instrument applications
You can get started with SigNoz using just three commands at your terminal.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -95,7 +95,7 @@ We will be using the Flask app at this <a href = "https://github.com/SigNoz/samp

1. Clone sample Flask app repository and go to the root folder<br></br>
```bash
git clone https://github.com/SigNoz/sample-flask-app.git
git clone --single-branch --depth 1 https://github.com/SigNoz/sample-flask-app.git
cd sample-flask-app
```
2. Create a virtual environment
Expand Down
4 changes: 2 additions & 2 deletions blog/2021-11-20-opentelemetry-fastapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ OpenTelemetry is a great choice to instrument ASGI frameworks. As it is open-sou
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -84,7 +84,7 @@ Download the <a href = "https://www.python.org/downloads/" rel="noopener norefer
We will be using the FastAPI app at this <a href = "https://github.com/SigNoz/sample-fastAPI-app" rel="noopener noreferrer nofollow" target="_blank" >Github repo</a>. All the required OpenTelemetry packages are contained within the `requirements.txt` file under `app` folder in this sample app. Go to the `app` folder first.

```bash
git clone https://github.com/SigNoz/sample-fastAPI-app.git
git clone --single-branch --depth 1 https://github.com/SigNoz/sample-fastAPI-app.git
cd sample-fastapi-app/
cd app
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-12-18-distributed-tracing-span.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" > Docker Engine </a> before running the install script.

```
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2021-12-18-opentelemetry-nestjs.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ First, you need to install SigNoz. Data collected by OpenTelemetry will be sent
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
4 changes: 2 additions & 2 deletions blog/2022-01-10-top-9-observability-tools-2022.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ SigNoz provides Logs management with advanced log query builder. You can also mo
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -331,7 +331,7 @@ An open-source tool like [SigNoz](https://signoz.io/), can be your best option
You can get started with SigNoz using just three commands at your terminal.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
4 changes: 2 additions & 2 deletions blog/2022-01-13-opentelemetry-django.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ First, you need to install SigNoz. Data collected by OpenTelemetry will be sent
You can get started with SigNoz using just three commands at your terminal.

``` bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -102,7 +102,7 @@ export DJANGO_SETTINGS_MODULE=mysite.settings
**Step 1. Running sample Django app**<br></br>
We will be using the Django app at this [Github repo](https://github.com/SigNoz/sample-django). All the required OpenTelemetry and Python packages are contained within the `requirements.txt` file.
```bash
git clone https://github.com/SigNoz/sample-django.git
git clone --single-branch --depth 1 https://github.com/SigNoz/sample-django.git
cd sample-django
```
It’s a good practice to create virtual environments for running Python apps, so we will be using a virtual python environment for this sample Django app
Expand Down
4 changes: 2 additions & 2 deletions blog/2022-02-02-opentelemetry-falcon.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ First, you need to install SigNoz. We will use OpenTelemetry to instrument the s
You can get started with SigNoz using just three commands at your terminal.

``` bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -99,7 +99,7 @@ The application list shown in the dashboard is from a sample app called HOT R.O.
We will be using the Falcon app at this [Github repo](https://github.com/SigNoz/python-falcon-template).

```bash
git clone https://github.com/SigNoz/python-falcon-template.git
git clone --single-branch --depth 1 https://github.com/SigNoz/python-falcon-template.git
cd python-falcon-template
```

Expand Down
2 changes: 1 addition & 1 deletion blog/2022-03-05-datadog-vs-prometheus.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ SigNoz cloud is the easiest way to get started with SigNoz. You can sign up for
You can also self-host SigNoz. Get started with self-hosted SigNoz using just three commands at your terminal.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2022-03-08-distributed-tracing-jaeger.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Steps to run HotRod application with Jaeger:
4. Clone Jaeger's GitHub repo in local and change directory
```jsx
git clone https://github.com/jaegertracing/jaeger.git
git clone --single-branch --depth 1 https://github.com/jaegertracing/jaeger.git
cd jaeger
```
5. Run the sample HotRod application
Expand Down
2 changes: 1 addition & 1 deletion blog/2022-03-08-distributed-tracing-nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install [Docker Engine](https://docs.docker.com/engine/install/) before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
4 changes: 2 additions & 2 deletions blog/2022-03-08-opentelemetry-spring-boot.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" >Docker Engine</a> before running the install script.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand All @@ -118,7 +118,7 @@ For this tutorial, we will use a sample Spring Boot application built using Mave
**Git clone the repository and go to the root folder**

```bash
git clone https://github.com/SigNoz/spring-petclinic.git
git clone --single-branch --depth 1 https://github.com/SigNoz/spring-petclinic.git
cd spring-petclinic
```

Expand Down
4 changes: 2 additions & 2 deletions blog/2022-03-09-distributed-tracing-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install [Docker Engine](https://docs.docker.com/engine/install/) before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -144,7 +144,7 @@ Below are the steps to run the sample Java application with OpenTelemetry:
We will be using a sample java app at this [GitHub repo](https://github.com/SigNoz/distributed-tracing-java-sample).

```jsx
git clone https://github.com/SigNoz/distributed-tracing-java-sample.git
git clone --single-branch --depth 1 https://github.com/SigNoz/distributed-tracing-java-sample.git
cd distributed-tracing-java-sample
```

Expand Down
4 changes: 2 additions & 2 deletions blog/2022-03-24-monitoring-graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" >Docker Engine</a> before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -99,7 +99,7 @@ Below are the steps to run the sample GraphQL application with OpenTelemetry.
We will be using a sample GraphQL app at this [GitHub repo](https://github.com/SigNoz/graphql-opentelemetry-sample).

```jsx
git clone https://github.com/SigNoz/graphql-opentelemetry-sample.git
git clone --single-branch --depth 1 https://github.com/SigNoz/graphql-opentelemetry-sample.git
cd graphql-opentelemetry-sample
```

Expand Down
2 changes: 1 addition & 1 deletion blog/2022-03-25-apm-vs-distributed-tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" >Docker Engine</a> before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank" >Docker Engine</a> before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
4 changes: 2 additions & 2 deletions blog/2022-04-13-opentelemetry-grpc-golang.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank">Docker Engine</a> before running the install script.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down Expand Up @@ -135,7 +135,7 @@ Clone the sample Golang app repository and go to the root folder**
We will be using a sample go-grpc app in this [GitHub repo](https://github.com/SigNoz/distributed-tracing-go-grpc-sample).

```jsx
git clone https://github.com/SigNoz/distributed-tracing-go-grpc-sample.git
git clone --single-branch --depth 1 https://github.com/SigNoz/distributed-tracing-go-grpc-sample.git
cd distributed-tracing-go-grpc-sample
```

Expand Down
2 changes: 1 addition & 1 deletion blog/2022-04-15-opentelemetry-angular.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank">Docker Engine</a> before running the install script.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2022-04-24-opentelemetry-vs-opentracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ You can also install and self-host SigNoz yourself. It can be installed on macOS
The install script automatically installs Docker Engine on Linux. However, you must manually install [Docker Engine](https://docs.docker.com/engine/install/) on macOS before running the install script.

```jsx
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
2 changes: 1 addition & 1 deletion blog/2022-04-30-opentelemetry-gin.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ SigNoz can be installed on macOS or Linux computers in just three steps by using
The install script automatically installs Docker Engine on Linux. However, on macOS, you must manually install <a href = "https://docs.docker.com/engine/install/" rel="noopener noreferrer nofollow" target="_blank">Docker Engine</a> before running the install script.

```bash
git clone -b main https://github.com/SigNoz/signoz.git
git clone --single-branch --depth 1 https://github.com/SigNoz/signoz.git
cd signoz/deploy/
./install.sh
```
Expand Down
Loading

0 comments on commit 2a44a86

Please sign in to comment.