Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit afba65b

Browse files
Merge pull request #1699 from splunk/repo-sync
Pulling refs/heads/main into main
2 parents 864dc11 + 5787d7a commit afba65b

File tree

21 files changed

+109
-90
lines changed

21 files changed

+109
-90
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Heretto Update Reminder
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
7+
jobs:
8+
reminder:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
id-token: write
12+
contents: read
13+
actions: read
14+
issues: write
15+
checks: write
16+
pull-requests: write
17+
18+
19+
steps:
20+
- name: Add PR Comment
21+
uses: actions/github-script@v6
22+
with:
23+
github-token: ${{ secrets.MY_TOKEN }}
24+
script: |
25+
const { owner, repo, number } = context.issue;
26+
const pr = await github.rest.pulls.get({
27+
owner,
28+
repo,
29+
pull_number: number,
30+
});
31+
32+
const author = pr.data.user.login;
33+
34+
await github.rest.issues.createComment({
35+
owner,
36+
repo,
37+
issue_number: number,
38+
body: `@${author}, please make sure that you update the files in Heretto and post the Heretto share link in this PR.`
39+
})

_templates/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ <h2 style="font-size:21px;font-family: 'Open Sans'; font-weight: bold;">Was this
204204
<a href="https://www.splunk.com/en_us/legal/privacy/privacy-policy.html" target="_blank">Privacy</a> |
205205
<a href="https://www.splunk.com/en_us/legal/terms/terms-of-use.html" target="_blank">Terms</a> |
206206
<a href="https://www.splunk.com/en_us/legal/export-controls.html" target="_blank">Export Control</a> |
207-
<span style="color:black">&copy; 2005 - 2023 Splunk LLC All rights reserved.</span>
207+
<span style="color:black">&copy; 2005 - 2025 Splunk LLC All rights reserved.</span>
208208
<div class="newfootertxt" style="color:black">Splunk, Splunk>, Turn Data Into Doing, and Data-to-Everything are trademarks or registered trademarks of Splunk LLC in the United States and other countries. All other brand names, product names, or trademarks belong to their respective owners.</div>
209209
</div>
210210
<div style="width: 28%;">

_templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ <h2 style="font-size:21px;font-family: 'Open Sans'; font-weight: bold;">Was this
208208
<a href="https://www.splunk.com/en_us/legal/privacy/privacy-policy.html" target="_blank">Privacy</a> |
209209
<a href="https://www.splunk.com/en_us/legal/terms/terms-of-use.html" target="_blank">Terms</a> |
210210
<a href="https://www.splunk.com/en_us/legal/export-controls.html" target="_blank">Export Control</a> |
211-
<span style="color:black">&copy; 2005 - 2023 Splunk LLC All rights reserved.</span>
211+
<span style="color:black">&copy; 2005 - 2025 Splunk LLC All rights reserved.</span>
212212
<div class="newfootertxt" style="color:black">Splunk, Splunk>, Turn Data Into Doing, and Data-to-Everything are trademarks or registered trademarks of Splunk LLC in the United States and other countries. All other brand names, product names, or trademarks belong to their respective owners.</div>
213213
</div>
214214
<div style="width: 28%;">

_templates/search.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ <h2 style="font-size:21px;font-family: 'Open Sans'; font-weight: bold;">Was this
268268
<a href="https://www.splunk.com/en_us/legal/privacy/privacy-policy.html" target="_blank">Privacy</a> |
269269
<a href="https://www.splunk.com/en_us/legal/terms/terms-of-use.html" target="_blank">Terms</a> |
270270
<a href="https://www.splunk.com/en_us/legal/export-controls.html" target="_blank">Export Control</a> |
271-
<span style="color:black">&copy; 2005 - 2023 Splunk LLC All rights reserved.</span>
271+
<span style="color:black">&copy; 2005 - 2025 Splunk LLC All rights reserved.</span>
272272
<div class="newfootertxt" style="color:black">Splunk, Splunk>, Turn Data Into Doing, and Data-to-Everything are trademarks or registered trademarks of Splunk LLC in the United States and other countries. All other brand names, product names, or trademarks belong to their respective owners.</div>
273273
</div>
274274
<div style="width: 28%;">

gdi/get-data-in/application/otel-dotnet/instrumentation/manual-dotnet-instrumentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ To create custom metrics, follow these steps:
9090
9191
OTEL_DOTNET_AUTO_METRICS_ADDITIONAL_SOURCES=My.Application
9292
93-
See the :new-page:`OpenTelemetry official documentation <https://opentelemetry.io/docs/languages/net/instrumentation/#metrics` for additional information and examples.
93+
See the :new-page:`OpenTelemetry official documentation <https://opentelemetry.io/docs/languages/net/instrumentation/#metrics>` for additional information and examples.

gdi/get-data-in/connect/aws/aws-connect-polling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In this step you need to choose the following connection options:
5454

5555
* Metadata.
5656
* Cost and usage metrics.
57-
* CloudWatch metrics.
57+
* CloudWatch metrics.
5858

5959
In the CloudWatch Metrics option, select :guilabel:`Polling` as the ingestion method, and set up the polling rate at which you want Splunk Observability Cloud to poll CloudWatch for metric data.
6060

gdi/get-data-in/connect/aws/get-awstoc.rst

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ Connect AWS to Splunk Observability Cloud
88
:description: Connection planning information and links to the different ways to connect AWS to Splunk Observability Cloud.
99

1010
.. toctree::
11-
:hidden:
12-
:maxdepth: 5
13-
14-
AWS authentication, permissions and regions <aws-prereqs>
15-
Supported Amazon services <https://docs.splunk.com/observability/en/gdi/integrations/cloud-aws.html#cloud-aws>
16-
Compare connection options <aws-compare-connect>
17-
Connect via polling <aws-connect-polling>
18-
Connect with Splunk-managed Metrics Streams <aws-connect-ms>
19-
Connect with AWS-managed Metric Streams <aws-console-ms>
20-
Connect to AWS using the Splunk API <aws-apiconfig>
21-
Connect to AWS with Terraform <aws-terraformconfig>
22-
CloudFormation and Terraform templates <aws-cloudformation>
23-
Send AWS logs to Splunk Platform <aws-logs>
24-
Next steps <aws-post-install>
25-
Troubleshoot your AWS integration <aws-troubleshooting>
26-
Troubleshoot AWS CloudWatch polling <aws-ts-polling>
27-
Troubleshoot Splunk-managed Metric Streams <aws-ts-metric-streams>
28-
Troubleshoot AWS-managed Metric Streams <aws-ts-ms-aws>
29-
aws-recommended-stats.rst
30-
GetMetricStatistics API deprecation notice <aws-api-notice>
31-
aws-tutorial/about-aws-tutorial.rst
11+
:hidden:
12+
:maxdepth: 5
13+
14+
AWS authentication, permissions and regions <aws-prereqs>
15+
Supported Amazon services <https://docs.splunk.com/observability/en/gdi/integrations/cloud-aws.html#cloud-aws>
16+
Compare connection options <aws-compare-connect>
17+
Connect via polling <aws-connect-polling>
18+
Connect with Splunk-managed Metrics Streams <aws-connect-ms>
19+
Connect with AWS-managed Metric Streams <aws-console-ms>
20+
Connect to AWS using the Splunk API <aws-apiconfig>
21+
Connect to AWS with Terraform <aws-terraformconfig>
22+
CloudFormation and Terraform templates <aws-cloudformation>
23+
Send AWS logs to Splunk Platform <aws-logs>
24+
Next steps <aws-post-install>
25+
Troubleshoot your AWS integration <aws-troubleshooting>
26+
Troubleshoot AWS CloudWatch polling <aws-ts-polling>
27+
Troubleshoot Splunk-managed Metric Streams <aws-ts-metric-streams>
28+
Troubleshoot AWS-managed Metric Streams <aws-ts-ms-aws>
29+
aws-recommended-stats.rst
30+
GetMetricStatistics API deprecation notice <aws-api-notice>
31+
aws-tutorial/about-aws-tutorial.rst
3232

3333
Splunk Observability Cloud offers you several data ingestion and connection methods to monitor your Amazon Web Services (AWS) data.
3434

gdi/get-data-in/rum/browser/configure-rum-browser-instrumentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ The following example shows how to restrict sampling to logged in users:
200200
rumAccessToken: '<your_rum_token>',
201201
applicationName: '<application-name>',
202202
tracer: {
203-
sampler: shouldTrace ? new AlwaysOnSampler() : new SplunkRum.AlwaysOffSampler(),
203+
sampler: shouldTrace ? new SplunkRum.AlwaysOnSampler() : new SplunkRum.AlwaysOffSampler(),
204204
},
205205
});
206206
</script>

index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -861,3 +861,4 @@ To keep up to date with changes in the products, see the Splunk Observability Cl
861861
:maxdepth: 3
862862

863863
Contribute to our documentation <get-started/contribute>
864+

infrastructure/metrics-pipeline/use-case-archive.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Actions
4141

4242
Kai decides to use Archived Metrics to control how Splunk Observability Cloud stores their team's data.
4343

44-
#. In Splunk Observability Cloud, Kai goes to :guilabel:` Settings > Metrics Management`. In the :guilabel:`Pipeline Management` tab Kai searches for the metric ``service.latency`` and configures the ingestion route to Archived Metrics. Kai can now see all the MTS as Archived MTS.
44+
#. In Splunk Observability Cloud, Kai goes to :guilabel:`Settings` then :guilabel:`Metrics Management`. In the :guilabel:`Pipeline Management` tab Kai searches for the metric ``service.latency`` and configures the ingestion route to Archived Metrics. Kai can now see all the MTS as Archived MTS.
4545
#. Kai creates a route exception rule and specifies a filter where ``data_center_region = Europe``. This gives them the estimate of 2,497 Real-Time MTS. Kai also restores the previous hour data to make sure they don't have gaps.
4646
#. Now, Kai views the list of charts and detectors that use ``service.latency``. To learn more about viewing or downloading the list, see :ref:`metrics-usage-report`.
4747
#. Kai already had a filter set up on the charts and detectors for ``data_center_region = Europe``. Kai verifies the data is visible in one of the charts.

0 commit comments

Comments
 (0)