Skip to content

Commit f46f26b

Browse files
authored
Merge pull request #952 from DataDog/ncreated/sync-develop-with-master
Merge `master` into `develop`
2 parents a77d0f2 + f18e08c commit f46f26b

File tree

5 files changed

+8
-22
lines changed

5 files changed

+8
-22
lines changed

Sources/Datadog/RUM/Debugging/RUMDebugging.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ internal class RUMDebugging {
123123

124124
internal class RUMViewOutline: RUMDebugView {
125125
private struct Constants {
126-
static let activeViewColor = #colorLiteral(red: 0.3882352941, green: 0.1725490196, blue: 0.6509803922, alpha: 1)
127-
static let inactiveViewColor = #colorLiteral(red: 0.6000000238, green: 0.6000000238, blue: 0.6000000238, alpha: 1)
126+
static let activeViewColor = #colorLiteral(red: 0.3882352941, green: 0.1725490196, blue: 0.6509803922, alpha: 1)
127+
static let inactiveViewColor = #colorLiteral(red: 0.6000000238, green: 0.6000000238, blue: 0.6000000238, alpha: 1)
128128
static let labelHeight: CGFloat = 16
129129

130130
static let viewNameTextAttributes: [NSAttributedString.Key: Any] = [

docs/rum_collection/_index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Datadog.initialize(
7676
.set(serviceName: "app-name")
7777
.set(endpoint: .us1)
7878
.trackUIKitRUMViews()
79-
.trackUIKitActions()
79+
.trackUIKitRUMActions()
8080
.trackURLSession()
8181
.build()
8282
)
@@ -117,7 +117,7 @@ Datadog.initialize(
117117
.set(serviceName: "app-name")
118118
.set(endpoint: .eu1)
119119
.trackUIKitRUMViews()
120-
.trackUIKitActions()
120+
.trackUIKitRUMActions()
121121
.trackURLSession()
122122
.build()
123123
)
@@ -158,7 +158,7 @@ Datadog.initialize(
158158
.set(serviceName: "app-name")
159159
.set(endpoint: .us3)
160160
.trackUIKitRUMViews()
161-
.trackUIKitActions()
161+
.trackUIKitRUMActions()
162162
.trackURLSession()
163163
.build()
164164
)
@@ -199,7 +199,7 @@ Datadog.initialize(
199199
.set(serviceName: "app-name")
200200
.set(endpoint: .us5)
201201
.trackUIKitRUMViews()
202-
.trackUIKitActions()
202+
.trackUIKitRUMActions()
203203
.trackURLSession()
204204
.build()
205205
)
@@ -240,7 +240,7 @@ Datadog.initialize(
240240
.set(serviceName: "app-name")
241241
.set(endpoint: .us1_fed)
242242
.trackUIKitRUMViews()
243-
.trackUIKitActions()
243+
.trackUIKitRUMActions()
244244
.trackURLSession()
245245
.build()
246246
)
@@ -346,4 +346,4 @@ Crash Reporting and Error Tracking for iOS displays any issues and latest availa
346346
[9]: https://docs.datadoghq.com/real_user_monitoring/ios/advanced_configuration/#initialization-parameters
347347
[10]: https://docs.datadoghq.com/real_user_monitoring/explorer/
348348
[11]: https://docs.datadoghq.com/getting_started/tagging/using_tags/#rum--session-replay
349-
[12]: https://docs.datadoghq.com/real_user_monitoring/ios/web_view_tracking/
349+
[12]: https://docs.datadoghq.com/real_user_monitoring/ios/web_view_tracking/

docs/rum_collection/crash_reporting.md

-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
---
2-
title: iOS Crash Reporting and Error Tracking
3-
kind: documentation
4-
beta: true
5-
further_reading:
6-
- link: "https://datadoghq.com/blog/ios-crash-reporting-datadog/"
7-
tag: "Blog"
8-
text: "Introducing iOS Crash Reporting and Error Tracking"
9-
- link: "/real_user_monitoring"
10-
tag: "Documentation"
11-
text: "Learn how to explore your RUM data"
12-
---
131
## Overview
142

153
Enable iOS Crash Reporting and Error Tracking to get comprehensive crash reports and error trends with Real User Monitoring. With this feature, you can access:

tools/lint/sources.swiftlint.yml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ only_rules: # we enable lint rules explicitly - only the ones listed below are a
2525
- empty_xctest_method
2626
- explicit_top_level_acl
2727
- first_where
28-
- for_where
2928
- force_cast
3029
- force_try
3130
- force_unwrapping

tools/lint/tests.swiftlint.yml

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ only_rules: # we enable lint rules explicitly - only the ones listed below are a
2323
- empty_parentheses_with_trailing_closure
2424
- empty_xctest_method
2525
- first_where
26-
- for_where
2726
- function_default_parameter_at_end
2827
- implicitly_unwrapped_optional
2928
- last_where

0 commit comments

Comments
 (0)