Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ slug: "/collecting-metrics/collectors/cloud-and-devops/aws-ec2-compute-instances
# AWS EC2 Compute instances


<img src="https://netdata.cloud/img/aws-ec2.png" width="150" data-integration-logo="true" data-logo-contrast-light="ok" data-logo-contrast-dark="ok" data-logo-contrast-confidence="high"/>
<img src="https://netdata.cloud/img/aws-ec2.png" width="150" data-integration-logo="true" data-logo-contrast-light="unknown" data-logo-contrast-dark="unknown" data-logo-contrast-confidence="low"/>


Plugin: go.d.plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ import { Grid, Box } from '@site/src/components/Grid_integrations';
</Box>

<Box banner="by Community" banner_color="rgba(0, 0, 0, 0.25)" to="/docs/collecting-metrics/collectors/cloud-and-devops/aws-ec2-compute-instances" title="AWS EC2 Compute instances">
<img custom-image src="https://netdata.cloud/img/aws-ec2.png" style={{width: '90%', maxHeight: '100%', verticalAlign: 'middle' }} data-integration-logo="true" data-logo-contrast-light="ok" data-logo-contrast-dark="ok" data-logo-contrast-confidence="high"/>
<img custom-image src="https://netdata.cloud/img/aws-ec2.png" style={{width: '90%', maxHeight: '100%', verticalAlign: 'middle' }} data-integration-logo="true" data-logo-contrast-light="unknown" data-logo-contrast-dark="unknown" data-logo-contrast-confidence="low"/>
</Box>

<Box banner="by Community" banner_color="rgba(0, 0, 0, 0.25)" to="/docs/collecting-metrics/collectors/cloud-and-devops/aws-quota" title="AWS Quota">
Expand Down
2 changes: 1 addition & 1 deletion docs/Collecting Metrics/Collectors/Collectors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,7 @@ import { Grid, Box } from '@site/src/components/Grid_integrations';
</Box>

<Box banner="by Community" banner_color="rgba(0, 0, 0, 0.25)" to="/docs/collecting-metrics/collectors/cloud-and-devops/aws-ec2-compute-instances" title="AWS EC2 Compute instances">
<img custom-image src="https://netdata.cloud/img/aws-ec2.png" style={{width: '90%', maxHeight: '100%', verticalAlign: 'middle' }} data-integration-logo="true" data-logo-contrast-light="ok" data-logo-contrast-dark="ok" data-logo-contrast-confidence="high"/>
<img custom-image src="https://netdata.cloud/img/aws-ec2.png" style={{width: '90%', maxHeight: '100%', verticalAlign: 'middle' }} data-integration-logo="true" data-logo-contrast-light="unknown" data-logo-contrast-dark="unknown" data-logo-contrast-confidence="low"/>
</Box>

<Box banner="by Community" banner_color="rgba(0, 0, 0, 0.25)" to="/docs/collecting-metrics/collectors/cloud-and-devops/aws-quota" title="AWS Quota">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ The following options can be defined globally: update_every, autodetection_retry
| | user.auth_key | Authentication protocol pass phrase for SNMPv3 messages. | | no |
| | [user.priv_proto](#option-snmpv3-user-priv-proto) | Privacy protocol for SNMPv3 messages. | | no |
| | user.priv_key | Privacy protocol pass phrase for SNMPv3 messages. | | no |
| | user.context_name | SNMPv3 context name used to address a specific MIB view on multi-context agents (e.g. virtual routers, logical partitions, snmpsim-simulated devices). Leave empty to use the default context. | | no |
| **SNMP transport** | options.version | SNMP version. Available versions: 1, 2, 3. | 2 | no |
| | options.port | Target port. | 161 | no |
| | options.retries | Retries to attempt. | 1 | no |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ slug: "/netdata-agent/installation/kubernetes-helm-chart-reference"

<a href="https://artifacthub.io/packages/search?repo=netdata" target="_blank" rel="noopener noreferrer"><img loading="lazy" src="https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/netdata" alt="Artifact HUB" class="img_node_modules-@docusaurus-theme-classic-lib-theme-MDXComponents-Img-styles-module"></img></a>

![Version: 3.7.162](https://img.shields.io/badge/Version-3.7.162-informational?style=flat-square)
![Version: 3.7.163](https://img.shields.io/badge/Version-3.7.163-informational?style=flat-square)

![AppVersion: v2.9.0](https://img.shields.io/badge/AppVersion-v2.9.0-informational?style=flat-square)

Expand Down Expand Up @@ -378,6 +378,60 @@ See values.yaml for defaults
</td>
<td>URL hostnames for the ingress (they need to resolve to the external IP of the ingress controller)</td>
</tr>
<tr>
<td>httpRoute.enabled</td>
<td>bool</td>
<td><pre lang="json">
false
</pre>
</td>
<td>Create HTTPRoute to access the netdata web UI via Gateway API</td>
</tr>
<tr>
<td>httpRoute.annotations</td>
<td>object</td>
<td><pre lang="json">
\{}
</pre>
</td>
<td>Additional annotations to add to the HTTPRoute</td>
</tr>
<tr>
<td>httpRoute.labels</td>
<td>object</td>
<td><pre lang="json">
\{}
</pre>
</td>
<td>Additional labels to add to the HTTPRoute</td>
</tr>
<tr>
<td>httpRoute.parentRefs</td>
<td>list</td>
<td><pre lang="json">
[]
</pre>
</td>
<td>Parent references for Gateway API HTTPRoute. Required when `httpRoute.enabled=true`</td>
</tr>
<tr>
<td>httpRoute.hostnames</td>
<td>list</td>
<td><pre lang="json">
[]
</pre>
</td>
<td>Hostnames for the HTTPRoute</td>
</tr>
<tr>
<td>httpRoute.rules</td>
<td>list</td>
<td><pre lang="json">
[]
</pre>
</td>
<td>Optional explicit HTTPRoute rules. If empty, a default PathPrefix `/` rule is generated</td>
</tr>
<tr>
<td>rbac.create</td>
<td>bool</td>
Expand Down