Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: unsecure http links in documentation #1768

Merged
merged 1 commit into from
Dec 21, 2023
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Before submitting an Issue, please search for similar ones in the
## Pull Requests

1. Ensure any install or build dependencies are removed before the end of the layer when doing a build.
2. Increase the version numbers in any examples files and the README.md to the new version that this Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
2. Increase the version numbers in any examples files and the README.md to the new version that this Pull Request would represent. The versioning scheme we use is [SemVer](https://semver.org/).
3. You may merge the Pull Request in once you have the sign-off of two other developers, or if you do not have permission to do that, you may request the second reviewer to merge it for you.

## Contributor License Agreement
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# New Relic infrastructure agent

The infrastructure agent (infra-agent) collects inventory data and metrics of your hosts and sends it to the New Relic platform.
The infrastructure agent (infra-agent) collects inventory data and metrics of your hosts and sends it to the New Relic platform.

[New Relic's infrastructure monitoring](https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/get-started/introduction-new-relic-infrastructure) provides flexible,
dynamic monitoring of your entire infrastructure, from services running in the cloud or on dedicated hosts to containers running in orchestrated environments.
Expand Down Expand Up @@ -43,7 +43,7 @@ For more information on configuration methods, precedence, and structure, see th

## Compile and build the agent

This repository contains a number of scripts that facilitate building `infra-agent` for environments supported by New Relic: Linux, Windows, and Docker.
This repository contains a number of scripts that facilitate building `infra-agent` for environments supported by New Relic: Linux, Windows, and Docker.

To build the agent for architectures and OSes different than the one where the build is running, set the [Go environment variables](https://golang.org/cmd/go/#hdr-Environment_variables) to target the desired OS/Architecture combination. For example:

Expand All @@ -53,7 +53,7 @@ $ make dist-for-os GOOS=linux

To compile and build the agent run these commands:

* Linux:
* Linux:

```bash
$ make compile # On CentOS 5: make compile-centos-5
Expand All @@ -79,7 +79,7 @@ The agent could run in [root/privileged/unprivileged/administrator(win) mode](ht

## Use the agent

You can [start, stop, restart, and check](https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/configuration/start-stop-restart-check-infrastructure-agent-status) the Infrastructure agent from the command line.
You can [start, stop, restart, and check](https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/configuration/start-stop-restart-check-infrastructure-agent-status) the Infrastructure agent from the command line.

For more information, [see our official documentation](https://docs.newrelic.com/docs/infrastructure/install-configure-manage-infrastructure).

Expand All @@ -103,7 +103,7 @@ For more information, see [Testing](https://golang.org/pkg/testing/) in the offi

## Automated tests

Packaging and harvest tests can be run in an automated way using ansible.
Packaging and harvest tests can be run in an automated way using ansible.

[Packaging tests](test/packaging/ansible/README.md)

Expand Down Expand Up @@ -194,5 +194,5 @@ To all contributors, we thank you! Without your contribution, this project woul

## License

infrastructure-agent is licensed under the [Apache 2.0](http://apache.org/licenses/LICENSE-2.0.txt) License.
infrastructure-agent is licensed under the [Apache 2.0](https://apache.org/licenses/LICENSE-2.0.txt) License.

2 changes: 1 addition & 1 deletion docs/hostname_resolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The agent provides two fields for hostname resolution: `hostname` and `fullHostn

### Short hostname (`hostname`)

The name the host knows about itself (referred here as short hostname for disambiguation). It's fetched in Linux via a [`uname` syscall](http://man7.org/linux/man-pages/man2/uname.2.html). If that syscall fails, `/proc/sys/kernel/hostname` is read for this purpose.
The name the host knows about itself (referred here as short hostname for disambiguation). It's fetched in Linux via a [`uname` syscall](https://man7.org/linux/man-pages/man2/uname.2.html). If that syscall fails, `/proc/sys/kernel/hostname` is read for this purpose.

### Full hostname (`fullHostname`)

Expand Down
2 changes: 1 addition & 1 deletion pkg/go-better-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*A Library of Checker Extensions for the Check Package*

This library provides useful extensions to the unit testing framework provided
by the [check.v1](http://labix.org/gocheck) package. It is completely
by the [check.v1](https://labix.org/gocheck) package. It is completely
compatible with `go test`.

The `check` package provides a basic `Checker` interface that is the basis for
Expand Down
Loading