告诉 SDK 将事件发送到哪里。如果没有提供这个值,SDK 将尝试从 SENTRY_DSN 环境变量中读取它。如果这个变量也不存在,SDK 就不会发送任何事件。
在没有进程环境(如浏览器)的运行时中,fallback 不会应用。
debug
打开或关闭调试模式。如果启用了调试,如果发送事件时出现问题,SDK 将尝试打印出有用的调试信息。默认值总是 false。一般不建议在生产环境中打开它,尽管打开 debug 模式不会引起任何安全问题。
release
设置 release(发行版)。某些 SDK 会尝试自动配置 release,但是最好手动设置 release,以确保该 release 与您的 deploy integrations 或 source map uploads 同步。版本名称是字符串,但是 Sentry 会检测到某些格式,并且它们的呈现方式可能有所不同。在 releases 文档中了解有关如何发送 release 数据的更多信息,以便 Sentry 可以告诉您 release 之间的回归并确定潜在的来源。
默认情况下,SDK 会尝试从环境变量 SENTRY_RELEASE 中读取该值(在浏览器 SDK 中,将从 window.SENTRY_RELEASE 中读取该值,如果可用)。
environment
设置环境。此字符串为自由形式,默认情况下不设置。一个 release 可以与多个环境相关联,以便在 UI 中将它们分开(可以考虑staging 与 prod 或类似的方式)。
默认情况下,SDK 将尝试从 SENTRY_ENVIRONMENT 环境变量中读取该值(浏览器 SDK 除外)。
sampleRate
配置错误事件的采样率,范围为 0.0 到 1.0。默认值为 1.0,表示发送了 100% 的错误事件。如果设置为 0.1,则仅发送 10% 的错误事件。事件是随机选择的。
maxBreadcrumbs
这个变量控制应该捕获的面包屑( breadcrumbs )总数。默认值为 100。
attachStacktrace
当启用时,堆栈跟踪将自动附加到所有记录的消息。堆栈跟踪总是附加到异常;然而,当设置此选项时,堆栈跟踪也会与消息一起发送。例如,该选项意味着堆栈跟踪显示在所有日志消息的旁边。
该选项默认为 off。
对于有堆栈跟踪和没有堆栈跟踪的事件,Sentry中的分组是不同的。结果,在为某些事件启用或禁用此 flag 时,您将获得新的组。
sendDefaultPii
如果启用此 flag,则某些个人识别信息(PII)将由 active integrations 添加。默认情况下,不发送此类数据。如果可能的话,我们建议默认情况下启用此功能以发送所有此类数据,并使用管理 敏感数据 的功能手动删除您不想发送的内容。
denyUrls
与不应该发送到 Sentry 的错误 URL 相匹配的字符串或正则表达式模式列表。默认情况下,将发送所有错误。这是一个 “contains(包含)” 匹配整个文件 URL。因此,如果你添加 foo.com,它也会匹配 https://bar.com/myfile/foo.com。默认情况下,将发送所有错误。
allowUrls
匹配错误 URL 的字符串列表或正则表达式模式的遗留别名,这些错误 URL 应该专门发送给 Sentry。默认情况下,将发送所有错误。这是一个 “contains(包含)” 匹配整个文件 URL。因此,如果您将 foo.com 添加到它,它也将匹配 https://bar.com/myfile/foo.com。默认情况下,所有错误将被发送。
autoSessionTracking
当设置为 true 时,SDK 将发送 session 事件给 Sentry。所有浏览器 SDK 都支持这一点,每个页面加载都向 Sentry 发送一个 session。
normalizeDepth
Sentry SDK 将任何上下文数据标准化到给定深度。任何包含比其更深的结构的数据的 key 都将被修剪并使用其类型([Object] 或 [Array])进行标记,而无需进一步进行操作。默认情况下,walking 的深度为 3 级。
Integration Configuration
对于许多平台,SDK 集成可以与之一起配置。在一些平台上,这是 init() 调用的一部分,而在另一些平台上,则应用不同的模式。
integrations
在一些 SDK 中,在库初始化时通过这个参数配置集成。要了解更多信息,请参阅我们的文档了解特定的集成。
defaultIntegrations
这可以用来禁用默认添加的集成。当设置为 false 时,不会添加默认的集成。
Hooks
这些选项可用于以各种方式 hook SDK,以定制事件的报告。
beforeSend
使用 SDK-specific 事件对象调用此函数,可以返回修改后的事件对象或不返回任何内容,以跳过报告事件。例如,这可以用于在发送前手动剥离 PII。
beforeBreadcrumb
在将面包屑(breadcrumb)添加到作用域(scope)之前,使用 SDK 特定的面包屑(SDK-specific breadcrumb)对象调用此函数。当该函数未返回任何内容时,将删除 breadcrumb。要传递 breadcrumb,请返回第一个参数,其中包含 breadcrumb 对象。回调通常会获得第二个参数(称为“hint”),该参数包含创建 breadcrumb 的原始对象,以进一步自定义面包屑的外观。
Transport Options
Transports 被用来发送事件到 Sentry。可以在某种程度上对传输进行定制,以更好地支持高度特定的部署。
transport
切换出用于发送事件的 transport。如何运作取决于 SDK。例如,它可以用于捕获事件以进行单元测试,或通过需要代理身份验证的更复杂的设置发送事件。
Tracing Options
tracesSampleRate
0 到 1 之间的数字,控制给定事务发送到哨兵的概率百分比。(0表示0%,1表示100%)同样适用于应用程序中创建的所有事务。必须定义这个或 tracesSampler 以启用跟踪。
tracesSampler
一个函数负责确定一个给定的事务将被发送到 Sentry 的概率百分比。它将自动被传递有关事务和创建它的上下文的信息,并且必须返回一个介于 0(被发送的概率为0%)和 1(被发送的概率为100%) 之间的数字。还可以用于过滤事务,对不需要的事务返回0。必须定义这个或 tracesSampleRate 来启用跟踪。
Releases & Health
一个 release 是部署到环境中的代码版本。当您向 Sentry 提供有关 release 的信息时,您可以:
确定新版本中引入的问题和回归
预测哪个提交引起了问题,谁可能负责
通过在提交消息中包含问题编号来解决问题
在部署代码时接收电子邮件通知
此外,releases 还用于将 source maps 应用到压缩的 JavaScript 中,以查看原始的、未转换的源代码。
Bind the Version
在配置客户端 SDK 时包含一个 release ID(通常称为 “version” )。这个 ID 通常是一个 git SHA 或自定义版本号。
release 名称不能:
包含换行符或空格
使用正斜杠(/),反斜杠(),句点(.),或双句点(…)
超过 200 个字符
每个组织的发布是全局的;在它们前面加上一些特定于项目(project-specific)的东西,以方便区分。告诉 SDK 将事件发送到哪里。如果没有提供这个值,SDK 将尝试从 SENTRY_DSN 环境变量中读取它。如果这个变量也不存在,SDK 就不会发送任何事件。
在没有进程环境(如浏览器)的运行时中,fallback 不会应用。
debug
打开或关闭调试模式。如果启用了调试,如果发送事件时出现问题,SDK 将尝试打印出有用的调试信息。默认值总是 false。一般不建议在生产环境中打开它,尽管打开 debug 模式不会引起任何安全问题。
release
设置 release(发行版)。某些 SDK 会尝试自动配置 release,但是最好手动设置 release,以确保该 release 与您的 deploy integrations 或 source map uploads 同步。版本名称是字符串,但是 Sentry 会检测到某些格式,并且它们的呈现方式可能有所不同。在 releases 文档中了解有关如何发送 release 数据的更多信息,以便 Sentry 可以告诉您 release 之间的回归并确定潜在的来源。
https://github.com/saom1084/crsafmlfuk/discussions/2173
https://github.com/feax844/vviwssuakm/discussions/2162
https://github.com/ogo79152/hfzqsnpyhc/discussions/2171
https://github.com/pxdo380/enycvtgupf/discussions/2156
https://github.com/saom1084/crsafmlfuk/discussions/2174
https://github.com/ogo79152/hfzqsnpyhc/discussions/2172
https://github.com/feax844/vviwssuakm/discussions/2163
https://github.com/pxdo380/enycvtgupf/discussions/2157
https://github.com/saom1084/crsafmlfuk/discussions/2175
https://github.com/feax844/vviwssuakm/discussions/2164
https://github.com/ogo79152/hfzqsnpyhc/discussions/2173
https://github.com/saom1084/crsafmlfuk/discussions/2176
https://github.com/pxdo380/enycvtgupf/discussions/2158
https://github.com/feax844/vviwssuakm/discussions/2165
https://github.com/ogo79152/hfzqsnpyhc/discussions/2174
https://github.com/saom1084/crsafmlfuk/discussions/2177
https://github.com/pxdo380/enycvtgupf/discussions/2159
https://github.com/feax844/vviwssuakm/discussions/2166
https://github.com/ogo79152/hfzqsnpyhc/discussions/2175
https://github.com/pxdo380/enycvtgupf/discussions/2160
https://github.com/saom1084/crsafmlfuk/discussions/2178
https://github.com/feax844/vviwssuakm/discussions/2167
https://github.com/ogo79152/hfzqsnpyhc/discussions/2176
https://github.com/saom1084/crsafmlfuk/discussions/2179
https://github.com/pxdo380/enycvtgupf/discussions/2161
https://github.com/feax844/vviwssuakm/discussions/2168
https://github.com/saom1084/crsafmlfuk/discussions/2180
https://github.com/ogo79152/hfzqsnpyhc/discussions/2177
https://github.com/pxdo380/enycvtgupf/discussions/2162
https://github.com/feax844/vviwssuakm/discussions/2169
https://github.com/ogo79152/hfzqsnpyhc/discussions/2178
https://github.com/saom1084/crsafmlfuk/discussions/2181
https://github.com/feax844/vviwssuakm/discussions/2170
https://github.com/pxdo380/enycvtgupf/discussions/2163
https://github.com/saom1084/crsafmlfuk/discussions/2182
https://github.com/ogo79152/hfzqsnpyhc/discussions/2179
https://github.com/feax844/vviwssuakm/discussions/2171
https://github.com/pxdo380/enycvtgupf/discussions/2164
https://github.com/saom1084/crsafmlfuk/discussions/2183
https://github.com/ogo79152/hfzqsnpyhc/discussions/2180
https://github.com/feax844/vviwssuakm/discussions/2172
https://github.com/pxdo380/enycvtgupf/discussions/2165
https://github.com/saom1084/crsafmlfuk/discussions/2184
https://github.com/ogo79152/hfzqsnpyhc/discussions/2181
https://github.com/feax844/vviwssuakm/discussions/2173
https://github.com/pxdo380/enycvtgupf/discussions/2166
https://github.com/ogo79152/hfzqsnpyhc/discussions/2182
https://github.com/saom1084/crsafmlfuk/discussions/2185
https://github.com/feax844/vviwssuakm/discussions/2174
https://github.com/pxdo380/enycvtgupf/discussions/2167
https://github.com/saom1084/crsafmlfuk/discussions/2186
https://github.com/ogo79152/hfzqsnpyhc/discussions/2183
https://github.com/pxdo380/enycvtgupf/discussions/2168
https://github.com/feax844/vviwssuakm/discussions/2175
https://github.com/saom1084/crsafmlfuk/discussions/2187
https://github.com/ogo79152/hfzqsnpyhc/discussions/2184
https://github.com/pxdo380/enycvtgupf/discussions/2169
https://github.com/feax844/vviwssuakm/discussions/2176
https://github.com/saom1084/crsafmlfuk/discussions/2188
https://github.com/ogo79152/hfzqsnpyhc/discussions/2185
https://github.com/pxdo380/enycvtgupf/discussions/2170
https://github.com/feax844/vviwssuakm/discussions/2177
https://github.com/ogo79152/hfzqsnpyhc/discussions/2186
https://github.com/saom1084/crsafmlfuk/discussions/2189
https://github.com/pxdo380/enycvtgupf/discussions/2171
https://github.com/feax844/vviwssuakm/discussions/2178
https://github.com/ogo79152/hfzqsnpyhc/discussions/2187
https://github.com/pxdo380/enycvtgupf/discussions/2172
https://github.com/saom1084/crsafmlfuk/discussions/2190
https://github.com/feax844/vviwssuakm/discussions/2179
https://github.com/ogo79152/hfzqsnpyhc/discussions/2188
https://github.com/saom1084/crsafmlfuk/discussions/2191
https://github.com/pxdo380/enycvtgupf/discussions/2173
https://github.com/feax844/vviwssuakm/discussions/2180
https://github.com/ogo79152/hfzqsnpyhc/discussions/2189
https://github.com/saom1084/crsafmlfuk/discussions/2192
https://github.com/pxdo380/enycvtgupf/discussions/2174
https://github.com/feax844/vviwssuakm/discussions/2181
https://github.com/ogo79152/hfzqsnpyhc/discussions/2190
https://github.com/saom1084/crsafmlfuk/discussions/2193
https://github.com/pxdo380/enycvtgupf/discussions/2175
https://github.com/feax844/vviwssuakm/discussions/2182
https://github.com/ogo79152/hfzqsnpyhc/discussions/2191
https://github.com/saom1084/crsafmlfuk/discussions/2194
https://github.com/pxdo380/enycvtgupf/discussions/2176
https://github.com/feax844/vviwssuakm/discussions/2183
https://github.com/ogo79152/hfzqsnpyhc/discussions/2192
https://github.com/saom1084/crsafmlfuk/discussions/2195
https://github.com/pxdo380/enycvtgupf/discussions/2177
https://github.com/feax844/vviwssuakm/discussions/2184
https://github.com/ogo79152/hfzqsnpyhc/discussions/2193
https://github.com/saom1084/crsafmlfuk/discussions/2196
https://github.com/feax844/vviwssuakm/discussions/2185
https://github.com/pxdo380/enycvtgupf/discussions/2178
https://github.com/ogo79152/hfzqsnpyhc/discussions/2194
https://github.com/saom1084/crsafmlfuk/discussions/2197
https://github.com/pxdo380/enycvtgupf/discussions/2179
https://github.com/feax844/vviwssuakm/discussions/2186
https://github.com/ogo79152/hfzqsnpyhc/discussions/2195
https://github.com/saom1084/crsafmlfuk/discussions/2198
https://github.com/ogo79152/hfzqsnpyhc/discussions/2196
https://github.com/pxdo380/enycvtgupf/discussions/2180
https://github.com/feax844/vviwssuakm/discussions/2187
https://github.com/saom1084/crsafmlfuk/discussions/2199
https://github.com/pxdo380/enycvtgupf/discussions/2181
https://github.com/ogo79152/hfzqsnpyhc/discussions/2197
https://github.com/feax844/vviwssuakm/discussions/2188
https://github.com/saom1084/crsafmlfuk/discussions/2200
https://github.com/ogo79152/hfzqsnpyhc/discussions/2198
https://github.com/pxdo380/enycvtgupf/discussions/2182
https://github.com/saom1084/crsafmlfuk/discussions/2201
https://github.com/feax844/vviwssuakm/discussions/2189
https://github.com/ogo79152/hfzqsnpyhc/discussions/2199
https://github.com/pxdo380/enycvtgupf/discussions/2183
https://github.com/saom1084/crsafmlfuk/discussions/2202
https://github.com/feax844/vviwssuakm/discussions/2190
https://github.com/pxdo380/enycvtgupf/discussions/2184
https://github.com/ogo79152/hfzqsnpyhc/discussions/2200
https://github.com/saom1084/crsafmlfuk/discussions/2203
https://github.com/feax844/vviwssuakm/discussions/2191
https://github.com/ogo79152/hfzqsnpyhc/discussions/2201
https://github.com/pxdo380/enycvtgupf/discussions/2185
https://github.com/saom1084/crsafmlfuk/discussions/2204
https://github.com/feax844/vviwssuakm/discussions/2192
https://github.com/pxdo380/enycvtgupf/discussions/2186
https://github.com/ogo79152/hfzqsnpyhc/discussions/2202
https://github.com/saom1084/crsafmlfuk/discussions/2205
https://github.com/feax844/vviwssuakm/discussions/2193
https://github.com/pxdo380/enycvtgupf/discussions/2187
https://github.com/ogo79152/hfzqsnpyhc/discussions/2203
https://github.com/saom1084/crsafmlfuk/discussions/2206
https://github.com/feax844/vviwssuakm/discussions/2194
https://github.com/pxdo380/enycvtgupf/discussions/2188
https://github.com/ogo79152/hfzqsnpyhc/discussions/2204
https://github.com/saom1084/crsafmlfuk/discussions/2207
https://github.com/feax844/vviwssuakm/discussions/2195
https://github.com/pxdo380/enycvtgupf/discussions/2189
https://github.com/ogo79152/hfzqsnpyhc/discussions/2205
https://github.com/saom1084/crsafmlfuk/discussions/2208
https://github.com/feax844/vviwssuakm/discussions/2196
https://github.com/pxdo380/enycvtgupf/discussions/2190
https://github.com/ogo79152/hfzqsnpyhc/discussions/2206
https://github.com/saom1084/crsafmlfuk/discussions/2209
https://github.com/feax844/vviwssuakm/discussions/2197
https://github.com/pxdo380/enycvtgupf/discussions/2191
https://github.com/ogo79152/hfzqsnpyhc/discussions/2207
https://github.com/saom1084/crsafmlfuk/discussions/2210
https://github.com/feax844/vviwssuakm/discussions/2198
https://github.com/ogo79152/hfzqsnpyhc/discussions/2208
https://github.com/pxdo380/enycvtgupf/discussions/2192
https://github.com/saom1084/crsafmlfuk/discussions/2211
https://github.com/feax844/vviwssuakm/discussions/2199
https://github.com/saom1084/crsafmlfuk/discussions/2212
https://github.com/pxdo380/enycvtgupf/discussions/2193
https://github.com/ogo79152/hfzqsnpyhc/discussions/2209
https://github.com/feax844/vviwssuakm/discussions/2200
https://github.com/saom1084/crsafmlfuk/discussions/2213
https://github.com/ogo79152/hfzqsnpyhc/discussions/2210
https://github.com/pxdo380/enycvtgupf/discussions/2194
https://github.com/feax844/vviwssuakm/discussions/2201
https://github.com/saom1084/crsafmlfuk/discussions/2214
https://github.com/ogo79152/hfzqsnpyhc/discussions/2211
https://github.com/pxdo380/enycvtgupf/discussions/2195
https://github.com/feax844/vviwssuakm/discussions/2202
https://github.com/pxdo380/enycvtgupf/discussions/2196
https://github.com/ogo79152/hfzqsnpyhc/discussions/2212
https://github.com/saom1084/crsafmlfuk/discussions/2215
https://github.com/feax844/vviwssuakm/discussions/2203
https://github.com/pxdo380/enycvtgupf/discussions/2197
https://github.com/ogo79152/hfzqsnpyhc/discussions/2213
https://github.com/saom1084/crsafmlfuk/discussions/2216
https://github.com/feax844/vviwssuakm/discussions/2204
https://github.com/pxdo380/enycvtgupf/discussions/2198
https://github.com/saom1084/crsafmlfuk/discussions/2217
https://github.com/ogo79152/hfzqsnpyhc/discussions/2214
https://github.com/feax844/vviwssuakm/discussions/2205
https://github.com/pxdo380/enycvtgupf/discussions/2199
https://github.com/saom1084/crsafmlfuk/discussions/2218
https://github.com/ogo79152/hfzqsnpyhc/discussions/2215
https://github.com/pxdo380/enycvtgupf/discussions/2200
https://github.com/feax844/vviwssuakm/discussions/2206
https://github.com/ogo79152/hfzqsnpyhc/discussions/2216
https://github.com/feax844/vviwssuakm/discussions/2207
https://github.com/ogo79152/hfzqsnpyhc/discussions/2217
https://github.com/pxdo380/enycvtgupf/discussions/2201
https://github.com/saom1084/crsafmlfuk/discussions/2219
https://github.com/ogo79152/hfzqsnpyhc/discussions/2218
https://github.com/feax844/vviwssuakm/discussions/2208
https://github.com/pxdo380/enycvtgupf/discussions/2202
https://github.com/saom1084/crsafmlfuk/discussions/2220
https://github.com/feax844/vviwssuakm/discussions/2209
https://github.com/ogo79152/hfzqsnpyhc/discussions/2219
https://github.com/pxdo380/enycvtgupf/discussions/2203
https://github.com/saom1084/crsafmlfuk/discussions/2221
https://github.com/feax844/vviwssuakm/discussions/2210
https://github.com/ogo79152/hfzqsnpyhc/discussions/2220
https://github.com/pxdo380/enycvtgupf/discussions/2204
https://github.com/saom1084/crsafmlfuk/discussions/2222
https://github.com/feax844/vviwssuakm/discussions/2211
https://github.com/ogo79152/hfzqsnpyhc/discussions/2221
https://github.com/pxdo380/enycvtgupf/discussions/2205
https://github.com/saom1084/crsafmlfuk/discussions/2223
https://github.com/feax844/vviwssuakm/discussions/2212
https://github.com/ogo79152/hfzqsnpyhc/discussions/2222
https://github.com/pxdo380/enycvtgupf/discussions/2206
https://github.com/saom1084/crsafmlfuk/discussions/2224
https://github.com/feax844/vviwssuakm/discussions/2213
https://github.com/ogo79152/hfzqsnpyhc/discussions/2223
https://github.com/pxdo380/enycvtgupf/discussions/2207
https://github.com/feax844/vviwssuakm/discussions/2214
https://github.com/saom1084/crsafmlfuk/discussions/2225
https://github.com/ogo79152/hfzqsnpyhc/discussions/2224
https://github.com/pxdo380/enycvtgupf/discussions/2208
https://github.com/ogo79152/hfzqsnpyhc/discussions/2225
https://github.com/saom1084/crsafmlfuk/discussions/2226
https://github.com/feax844/vviwssuakm/discussions/2215
https://github.com/pxdo380/enycvtgupf/discussions/2209
https://github.com/ogo79152/hfzqsnpyhc/discussions/2226
https://github.com/saom1084/crsafmlfuk/discussions/2227
https://github.com/pxdo380/enycvtgupf/discussions/2210
https://github.com/feax844/vviwssuakm/discussions/2216
https://github.com/saom1084/crsafmlfuk/discussions/2228
https://github.com/ogo79152/hfzqsnpyhc/discussions/2227
https://github.com/pxdo380/enycvtgupf/discussions/2211
https://github.com/feax844/vviwssuakm/discussions/2217
https://github.com/saom1084/crsafmlfuk/discussions/2229
https://github.com/ogo79152/hfzqsnpyhc/discussions/2228
https://github.com/pxdo380/enycvtgupf/discussions/2212
https://github.com/feax844/vviwssuakm/discussions/2218
https://github.com/saom1084/crsafmlfuk/discussions/2230
https://github.com/ogo79152/hfzqsnpyhc/discussions/2229
https://github.com/pxdo380/enycvtgupf/discussions/2213
https://github.com/feax844/vviwssuakm/discussions/2219
https://github.com/saom1084/crsafmlfuk/discussions/2231
https://github.com/pxdo380/enycvtgupf/discussions/2214
https://github.com/ogo79152/hfzqsnpyhc/discussions/2230
https://github.com/feax844/vviwssuakm/discussions/2220
https://github.com/saom1084/crsafmlfuk/discussions/2232
https://github.com/pxdo380/enycvtgupf/discussions/2215
https://github.com/ogo79152/hfzqsnpyhc/discussions/2231
https://github.com/saom1084/crsafmlfuk/discussions/2233
https://github.com/pxdo380/enycvtgupf/discussions/2216
https://github.com/feax844/vviwssuakm/discussions/2221
https://github.com/saom1084/crsafmlfuk/discussions/2234
https://github.com/feax844/vviwssuakm/discussions/2222
https://github.com/ogo79152/hfzqsnpyhc/discussions/2232
https://github.com/pxdo380/enycvtgupf/discussions/2217
https://github.com/saom1084/crsafmlfuk/discussions/2235
https://github.com/feax844/vviwssuakm/discussions/2223
https://github.com/ogo79152/hfzqsnpyhc/discussions/2233
https://github.com/pxdo380/enycvtgupf/discussions/2218
https://github.com/feax844/vviwssuakm/discussions/2224
https://github.com/saom1084/crsafmlfuk/discussions/2236
https://github.com/ogo79152/hfzqsnpyhc/discussions/2234
https://github.com/pxdo380/enycvtgupf/discussions/2219
https://github.com/saom1084/crsafmlfuk/discussions/2237
https://github.com/feax844/vviwssuakm/discussions/2225
https://github.com/ogo79152/hfzqsnpyhc/discussions/2235
https://github.com/pxdo380/enycvtgupf/discussions/2220
https://github.com/feax844/vviwssuakm/discussions/2226
https://github.com/saom1084/crsafmlfuk/discussions/2238
https://github.com/pxdo380/enycvtgupf/discussions/2221
https://github.com/ogo79152/hfzqsnpyhc/discussions/2236
https://github.com/saom1084/crsafmlfuk/discussions/2239
https://github.com/feax844/vviwssuakm/discussions/2227
https://github.com/ogo79152/hfzqsnpyhc/discussions/2237
https://github.com/pxdo380/enycvtgupf/discussions/2222
https://github.com/saom1084/crsafmlfuk/discussions/2240
https://github.com/ogo79152/hfzqsnpyhc/discussions/2238
https://github.com/feax844/vviwssuakm/discussions/2228
https://github.com/pxdo380/enycvtgupf/discussions/2223
https://github.com/saom1084/crsafmlfuk/discussions/2241
https://github.com/feax844/vviwssuakm/discussions/2229
https://github.com/ogo79152/hfzqsnpyhc/discussions/2239
https://github.com/pxdo380/enycvtgupf/discussions/2224
https://github.com/saom1084/crsafmlfuk/discussions/2242
https://github.com/feax844/vviwssuakm/discussions/2230
https://github.com/ogo79152/hfzqsnpyhc/discussions/2240
https://github.com/pxdo380/enycvtgupf/discussions/2225
https://github.com/ogo79152/hfzqsnpyhc/discussions/2241
https://github.com/saom1084/crsafmlfuk/discussions/2243
https://github.com/feax844/vviwssuakm/discussions/2231
https://github.com/pxdo380/enycvtgupf/discussions/2226
https://github.com/saom1084/crsafmlfuk/discussions/2244
https://github.com/ogo79152/hfzqsnpyhc/discussions/2242
https://github.com/feax844/vviwssuakm/discussions/2232
https://github.com/pxdo380/enycvtgupf/discussions/2227
https://github.com/feax844/vviwssuakm/discussions/2233
https://github.com/saom1084/crsafmlfuk/discussions/2245
https://github.com/ogo79152/hfzqsnpyhc/discussions/2243
https://github.com/pxdo380/enycvtgupf/discussions/2228
https://github.com/feax844/vviwssuakm/discussions/2234
https://github.com/saom1084/crsafmlfuk/discussions/2246
https://github.com/pxdo380/enycvtgupf/discussions/2229
https://github.com/ogo79152/hfzqsnpyhc/discussions/2244
https://github.com/feax844/vviwssuakm/discussions/2235
https://github.com/saom1084/crsafmlfuk/discussions/2247
https://github.com/ogo79152/hfzqsnpyhc/discussions/2245
https://github.com/pxdo380/enycvtgupf/discussions/2230
https://github.com/feax844/vviwssuakm/discussions/2236
https://github.com/saom1084/crsafmlfuk/discussions/2248
https://github.com/ogo79152/hfzqsnpyhc/discussions/2246
https://github.com/feax844/vviwssuakm/discussions/2237
https://github.com/pxdo380/enycvtgupf/discussions/2231
https://github.com/saom1084/crsafmlfuk/discussions/2249
https://github.com/ogo79152/hfzqsnpyhc/discussions/2247
https://github.com/feax844/vviwssuakm/discussions/2238
https://github.com/pxdo380/enycvtgupf/discussions/2232
https://github.com/saom1084/crsafmlfuk/discussions/2250
https://github.com/ogo79152/hfzqsnpyhc/discussions/2248
https://github.com/feax844/vviwssuakm/discussions/2239
https://github.com/pxdo380/enycvtgupf/discussions/2233
https://github.com/saom1084/crsafmlfuk/discussions/2251
https://github.com/ogo79152/hfzqsnpyhc/discussions/2249
https://github.com/feax844/vviwssuakm/discussions/2240
https://github.com/pxdo380/enycvtgupf/discussions/2234
https://github.com/saom1084/crsafmlfuk/discussions/2252
https://github.com/ogo79152/hfzqsnpyhc/discussions/2250
https://github.com/feax844/vviwssuakm/discussions/2241
https://github.com/saom1084/crsafmlfuk/discussions/2253
https://github.com/pxdo380/enycvtgupf/discussions/2235
https://github.com/ogo79152/hfzqsnpyhc/discussions/2251
https://github.com/pxdo380/enycvtgupf/discussions/2236
https://github.com/saom1084/crsafmlfuk/discussions/2254
https://github.com/feax844/vviwssuakm/discussions/2242
https://github.com/ogo79152/hfzqsnpyhc/discussions/2252
https://github.com/pxdo380/enycvtgupf/discussions/2237
https://github.com/saom1084/crsafmlfuk/discussions/2255
https://github.com/feax844/vviwssuakm/discussions/2243
https://github.com/ogo79152/hfzqsnpyhc/discussions/2253
https://github.com/pxdo380/enycvtgupf/discussions/2238
https://github.com/saom1084/crsafmlfuk/discussions/2256
https://github.com/feax844/vviwssuakm/discussions/2244
https://github.com/pxdo380/enycvtgupf/discussions/2239
https://github.com/ogo79152/hfzqsnpyhc/discussions/2254
https://github.com/feax844/vviwssuakm/discussions/2245
https://github.com/saom1084/crsafmlfuk/discussions/2257
https://github.com/pxdo380/enycvtgupf/discussions/2240
https://github.com/ogo79152/hfzqsnpyhc/discussions/2255
https://github.com/feax844/vviwssuakm/discussions/2246
https://github.com/saom1084/crsafmlfuk/discussions/2258
https://github.com/pxdo380/enycvtgupf/discussions/2241
https://github.com/ogo79152/hfzqsnpyhc/discussions/2256
https://github.com/feax844/vviwssuakm/discussions/2247
https://github.com/pxdo380/enycvtgupf/discussions/2242
https://github.com/saom1084/crsafmlfuk/discussions/2259
https://github.com/ogo79152/hfzqsnpyhc/discussions/2257
https://github.com/feax844/vviwssuakm/discussions/2248
https://github.com/pxdo380/enycvtgupf/discussions/2243
https://github.com/ogo79152/hfzqsnpyhc/discussions/2258
https://github.com/saom1084/crsafmlfuk/discussions/2260
https://github.com/feax844/vviwssuakm/discussions/2249
https://github.com/pxdo380/enycvtgupf/discussions/2244
https://github.com/saom1084/crsafmlfuk/discussions/2261
https://github.com/ogo79152/hfzqsnpyhc/discussions/2259
https://github.com/feax844/vviwssuakm/discussions/2250
https://github.com/pxdo380/enycvtgupf/discussions/2245
https://github.com/saom1084/crsafmlfuk/discussions/2262
https://github.com/ogo79152/hfzqsnpyhc/discussions/2260
https://github.com/feax844/vviwssuakm/discussions/2251
https://github.com/pxdo380/enycvtgupf/discussions/2246
https://github.com/saom1084/crsafmlfuk/discussions/2263
https://github.com/feax844/vviwssuakm/discussions/2252
https://github.com/ogo79152/hfzqsnpyhc/discussions/2261
https://github.com/saom1084/crsafmlfuk/discussions/2264
https://github.com/pxdo380/enycvtgupf/discussions/2247
https://github.com/ogo79152/hfzqsnpyhc/discussions/2262
https://github.com/feax844/vviwssuakm/discussions/2253
https://github.com/saom1084/crsafmlfuk/discussions/2265
https://github.com/pxdo380/enycvtgupf/discussions/2248
https://github.com/feax844/vviwssuakm/discussions/2254
https://github.com/ogo79152/hfzqsnpyhc/discussions/2263
https://github.com/pxdo380/enycvtgupf/discussions/2249
https://github.com/saom1084/crsafmlfuk/discussions/2266
https://github.com/ogo79152/hfzqsnpyhc/discussions/2264
https://github.com/feax844/vviwssuakm/discussions/2255
https://github.com/pxdo380/enycvtgupf/discussions/2250
https://github.com/saom1084/crsafmlfuk/discussions/2267
https://github.com/ogo79152/hfzqsnpyhc/discussions/2265
https://github.com/feax844/vviwssuakm/discussions/2256
https://github.com/saom1084/crsafmlfuk/discussions/2268
https://github.com/pxdo380/enycvtgupf/discussions/2251
https://github.com/ogo79152/hfzqsnpyhc/discussions/2266
https://github.com/feax844/vviwssuakm/discussions/2257
https://github.com/saom1084/crsafmlfuk/discussions/2269
https://github.com/pxdo380/enycvtgupf/discussions/2252
https://github.com/ogo79152/hfzqsnpyhc/discussions/2267
https://github.com/feax844/vviwssuakm/discussions/2258
https://github.com/saom1084/crsafmlfuk/discussions/2270
https://github.com/pxdo380/enycvtgupf/discussions/2253
https://github.com/ogo79152/hfzqsnpyhc/discussions/2268
https://github.com/feax844/vviwssuakm/discussions/2259
https://github.com/saom1084/crsafmlfuk/discussions/2271
https://github.com/pxdo380/enycvtgupf/discussions/2254
https://github.com/ogo79152/hfzqsnpyhc/discussions/2269
https://github.com/saom1084/crsafmlfuk/discussions/2272
https://github.com/feax844/vviwssuakm/discussions/2260
https://github.com/pxdo380/enycvtgupf/discussions/2255
https://github.com/ogo79152/hfzqsnpyhc/discussions/2270
https://github.com/saom1084/crsafmlfuk/discussions/2273
https://github.com/feax844/vviwssuakm/discussions/2261
https://github.com/pxdo380/enycvtgupf/discussions/2256
https://github.com/ogo79152/hfzqsnpyhc/discussions/2271
https://github.com/feax844/vviwssuakm/discussions/2262
https://github.com/saom1084/crsafmlfuk/discussions/2274
https://github.com/ogo79152/hfzqsnpyhc/discussions/2272
https://github.com/pxdo380/enycvtgupf/discussions/2257
https://github.com/saom1084/crsafmlfuk/discussions/2275
https://github.com/feax844/vviwssuakm/discussions/2263
https://github.com/ogo79152/hfzqsnpyhc/discussions/2273
https://github.com/pxdo380/enycvtgupf/discussions/2258
https://github.com/feax844/vviwssuakm/discussions/2264
https://github.com/saom1084/crsafmlfuk/discussions/2276
https://github.com/ogo79152/hfzqsnpyhc/discussions/2274
https://github.com/feax844/vviwssuakm/discussions/2265
https://github.com/pxdo380/enycvtgupf/discussions/2259
https://github.com/saom1084/crsafmlfuk/discussions/2277
https://github.com/ogo79152/hfzqsnpyhc/discussions/2275
https://github.com/pxdo380/enycvtgupf/discussions/2260
https://github.com/feax844/vviwssuakm/discussions/2266
https://github.com/saom1084/crsafmlfuk/discussions/2278
https://github.com/ogo79152/hfzqsnpyhc/discussions/2276
https://github.com/pxdo380/enycvtgupf/discussions/2261
https://github.com/feax844/vviwssuakm/discussions/2267
https://github.com/ogo79152/hfzqsnpyhc/discussions/2277
https://github.com/saom1084/crsafmlfuk/discussions/2279
https://github.com/pxdo380/enycvtgupf/discussions/2262
https://github.com/feax844/vviwssuakm/discussions/2268
https://github.com/ogo79152/hfzqsnpyhc/discussions/2278
https://github.com/saom1084/crsafmlfuk/discussions/2280
https://github.com/feax844/vviwssuakm/discussions/2269
https://github.com/pxdo380/enycvtgupf/discussions/2263
https://github.com/ogo79152/hfzqsnpyhc/discussions/2279
https://github.com/saom1084/crsafmlfuk/discussions/2281
https://github.com/pxdo380/enycvtgupf/discussions/2264
https://github.com/feax844/vviwssuakm/discussions/2270
https://github.com/ogo79152/hfzqsnpyhc/discussions/2280
https://github.com/saom1084/crsafmlfuk/discussions/2282
https://github.com/feax844/vviwssuakm/discussions/2271
https://github.com/saom1084/crsafmlfuk/discussions/2283
https://github.com/ogo79152/hfzqsnpyhc/discussions/2281
https://github.com/feax844/vviwssuakm/discussions/2272
https://github.com/pxdo380/enycvtgupf/discussions/2265
https://github.com/ogo79152/hfzqsnpyhc/discussions/2282
https://github.com/saom1084/crsafmlfuk/discussions/2284
https://github.com/pxdo380/enycvtgupf/discussions/2266
https://github.com/ogo79152/hfzqsnpyhc/discussions/2283
https://github.com/saom1084/crsafmlfuk/discussions/2285
https://github.com/pxdo380/enycvtgupf/discussions/2267
https://github.com/saom1084/crsafmlfuk/discussions/2286
https://github.com/ogo79152/hfzqsnpyhc/discussions/2284
https://github.com/feax844/vviwssuakm/discussions/2273
https://github.com/pxdo380/enycvtgupf/discussions/2268
https://github.com/feax844/vviwssuakm/discussions/2274
https://github.com/ogo79152/hfzqsnpyhc/discussions/2285
https://github.com/saom1084/crsafmlfuk/discussions/2287
https://github.com/saom1084/crsafmlfuk/discussions/2288
https://github.com/pxdo380/enycvtgupf/discussions/2269
https://github.com/feax844/vviwssuakm/discussions/2275
https://github.com/ogo79152/hfzqsnpyhc/discussions/2286
https://github.com/ogo79152/hfzqsnpyhc/discussions/2287
https://github.com/pxdo380/enycvtgupf/discussions/2270
https://github.com/saom1084/crsafmlfuk/discussions/2289
https://github.com/feax844/vviwssuakm/discussions/2276
https://github.com/ogo79152/hfzqsnpyhc/discussions/2288
https://github.com/pxdo380/enycvtgupf/discussions/2271
https://github.com/saom1084/crsafmlfuk/discussions/2290
https://github.com/feax844/vviwssuakm/discussions/2277
https://github.com/ogo79152/hfzqsnpyhc/discussions/2289
https://github.com/pxdo380/enycvtgupf/discussions/2272
https://github.com/saom1084/crsafmlfuk/discussions/2291
https://github.com/feax844/vviwssuakm/discussions/2278
https://github.com/pxdo380/enycvtgupf/discussions/2273
https://github.com/ogo79152/hfzqsnpyhc/discussions/2290
https://github.com/saom1084/crsafmlfuk/discussions/2292
https://github.com/feax844/vviwssuakm/discussions/2279
https://github.com/saom1084/crsafmlfuk/discussions/2293
https://github.com/ogo79152/hfzqsnpyhc/discussions/2291
https://github.com/pxdo380/enycvtgupf/discussions/2274
https://github.com/feax844/vviwssuakm/discussions/2280
https://github.com/saom1084/crsafmlfuk/discussions/2294
https://github.com/pxdo380/enycvtgupf/discussions/2275
https://github.com/ogo79152/hfzqsnpyhc/discussions/2292
https://github.com/feax844/vviwssuakm/discussions/2281
https://github.com/saom1084/crsafmlfuk/discussions/2295
https://github.com/pxdo380/enycvtgupf/discussions/2276
https://github.com/ogo79152/hfzqsnpyhc/discussions/2293
https://github.com/feax844/vviwssuakm/discussions/2282
https://github.com/saom1084/crsafmlfuk/discussions/2296
https://github.com/pxdo380/enycvtgupf/discussions/2277
https://github.com/ogo79152/hfzqsnpyhc/discussions/2294
https://github.com/feax844/vviwssuakm/discussions/2283
https://github.com/saom1084/crsafmlfuk/discussions/2297
https://github.com/pxdo380/enycvtgupf/discussions/2278
https://github.com/ogo79152/hfzqsnpyhc/discussions/2295
https://github.com/feax844/vviwssuakm/discussions/2284
https://github.com/saom1084/crsafmlfuk/discussions/2298
https://github.com/pxdo380/enycvtgupf/discussions/2279
https://github.com/ogo79152/hfzqsnpyhc/discussions/2296
https://github.com/feax844/vviwssuakm/discussions/2285
https://github.com/saom1084/crsafmlfuk/discussions/2299
https://github.com/pxdo380/enycvtgupf/discussions/2280
https://github.com/ogo79152/hfzqsnpyhc/discussions/2297
https://github.com/feax844/vviwssuakm/discussions/2286
https://github.com/saom1084/crsafmlfuk/discussions/2300
https://github.com/ogo79152/hfzqsnpyhc/discussions/2298
https://github.com/pxdo380/enycvtgupf/discussions/2281
https://github.com/feax844/vviwssuakm/discussions/2287
https://github.com/saom1084/crsafmlfuk/discussions/2301
https://github.com/ogo79152/hfzqsnpyhc/discussions/2299
https://github.com/pxdo380/enycvtgupf/discussions/2282
https://github.com/feax844/vviwssuakm/discussions/2288
https://github.com/saom1084/crsafmlfuk/discussions/2302
https://github.com/ogo79152/hfzqsnpyhc/discussions/2300
https://github.com/pxdo380/enycvtgupf/discussions/2283
https://github.com/feax844/vviwssuakm/discussions/2289
https://github.com/ogo79152/hfzqsnpyhc/discussions/2301
https://github.com/saom1084/crsafmlfuk/discussions/2303
https://github.com/pxdo380/enycvtgupf/discussions/2284
https://github.com/ogo79152/hfzqsnpyhc/discussions/2302
https://github.com/feax844/vviwssuakm/discussions/2290
https://github.com/saom1084/crsafmlfuk/discussions/2304
https://github.com/pxdo380/enycvtgupf/discussions/2285
https://github.com/ogo79152/hfzqsnpyhc/discussions/2303
https://github.com/feax844/vviwssuakm/discussions/2291
https://github.com/saom1084/crsafmlfuk/discussions/2305
https://github.com/pxdo380/enycvtgupf/discussions/2286
https://github.com/ogo79152/hfzqsnpyhc/discussions/2304
https://github.com/saom1084/crsafmlfuk/discussions/2306
https://github.com/feax844/vviwssuakm/discussions/2292
https://github.com/pxdo380/enycvtgupf/discussions/2287
https://github.com/ogo79152/hfzqsnpyhc/discussions/2305
https://github.com/saom1084/crsafmlfuk/discussions/2307
https://github.com/feax844/vviwssuakm/discussions/2293
https://github.com/pxdo380/enycvtgupf/discussions/2288
https://github.com/saom1084/crsafmlfuk/discussions/2308
https://github.com/ogo79152/hfzqsnpyhc/discussions/2306
https://github.com/pxdo380/enycvtgupf/discussions/2289
https://github.com/feax844/vviwssuakm/discussions/2294
https://github.com/saom1084/crsafmlfuk/discussions/2309
https://github.com/feax844/vviwssuakm/discussions/2295
https://github.com/ogo79152/hfzqsnpyhc/discussions/2307
https://github.com/pxdo380/enycvtgupf/discussions/2290
https://github.com/saom1084/crsafmlfuk/discussions/2310
https://github.com/ogo79152/hfzqsnpyhc/discussions/2308
https://github.com/feax844/vviwssuakm/discussions/2296
https://github.com/pxdo380/enycvtgupf/discussions/2291
https://github.com/saom1084/crsafmlfuk/discussions/2311
https://github.com/feax844/vviwssuakm/discussions/2297
https://github.com/pxdo380/enycvtgupf/discussions/2292
https://github.com/ogo79152/hfzqsnpyhc/discussions/2309
https://github.com/feax844/vviwssuakm/discussions/2298
https://github.com/saom1084/crsafmlfuk/discussions/2312
https://github.com/pxdo380/enycvtgupf/discussions/2293
https://github.com/ogo79152/hfzqsnpyhc/discussions/2310
https://github.com/feax844/vviwssuakm/discussions/2299
https://github.com/saom1084/crsafmlfuk/discussions/2313
https://github.com/pxdo380/enycvtgupf/discussions/2294
https://github.com/ogo79152/hfzqsnpyhc/discussions/2311
https://github.com/saom1084/crsafmlfuk/discussions/2314
https://github.com/pxdo380/enycvtgupf/discussions/2295
https://github.com/feax844/vviwssuakm/discussions/2300
https://github.com/ogo79152/hfzqsnpyhc/discussions/2312
https://github.com/saom1084/crsafmlfuk/discussions/2315
https://github.com/feax844/vviwssuakm/discussions/2301
https://github.com/pxdo380/enycvtgupf/discussions/2296
美好的生命应该充满期待、惊喜和感激
世上最累人的事,莫过于虚伪的过日子
.觉得自己做的到和不做的到,其实只在一念之间
第一个青春是上帝给的;第二个的青春是靠自己努力的
少一点预设的期待,那份对人的关怀会更自在
思想如钻子,必须集中在一点钻下去才有力量
人只要不失去方向,就不会失去自己
如果你曾歌颂黎明,那么也请你拥抱黑夜
问候不一定要慎重其事,但一定要真诚感人
人生重要的不是所站的位置,而是所朝的方向
当你能飞的时候就不要放弃飞
当你能梦的时候就不要放弃梦
当你能爱的时候就不要放弃爱
生命太过短暂,今天放弃了明天不一定能得到
天才是百分之一的灵感加上百分之九十九的努力
人总是珍惜未得到的,而遗忘了所拥有的
快乐要懂得分享,才能加倍的快乐
自己要先看得起自己,别人才会看得起你
一个今天胜过两个明天
要铭记在心;每天都是一年中最美好的日子
乐观者在灾祸中看到机会;悲观者在机会中看到灾祸
有勇气并不表示恐惧不存在,而是敢面对恐惧、克服恐惧
肯承认错误则错已改了一半
明天是世上增值最快的一块土地,因它充满了希望
理想的路总是为有信心的人预备着
所有欺骗中,自欺是最为严重的
人生最大的错误是不断担心会犯错
把你的脸迎向阳光,那就不会有阴影
.经验是由痛苦中粹取出来的
用最少的悔恨面对过去
用最少的浪费面对现在
用最多的梦面对未来
快乐不是因为拥有的多而是计较的少
你的选择是做或不做,但不做就永远不会有机会
如你想要拥有完美无暇的友谊,可能一辈子找不到朋友
不如意的时候不要尽往悲伤里钻,想想有笑声的日子吧
把自己当傻瓜,不懂就问,你会学的更多
要纠正别人之前,先反省自己有没有犯错
因害怕失败而不敢放手一搏,永远不会成功
.要克服生活的焦虑和沮丧,得先学会做自己的主人
你不能左右天气,但你能转变你的心情
孤单寂寞与被遗弃感是最可怕的贫穷
想象力比知识更重要
漫无目的的生活就像出海航行而没有指南针
好好扮演自己的角色,做自己该做的事
一切伟大的行动和思想,都有一个微不足道的开始
得意时应善待他人,因为你失意时会需要他们
学做任何事得按部就班,急不得。
3.让孩子快乐起来
你聋了?听见没有?
哎你怎么这么懒呀!
你跟你爸一个德性!
https://github.com/saom1084/crsafmlfuk/discussions/2316
https://github.com/pxdo380/enycvtgupf/discussions/2297
https://github.com/saom1084/crsafmlfuk/discussions/2317
https://github.com/pxdo380/enycvtgupf/discussions/2298
https://github.com/saom1084/crsafmlfuk/discussions/2318
https://github.com/feax844/vviwssuakm/discussions/2302
https://github.com/ogo79152/hfzqsnpyhc/discussions/2313
https://github.com/pxdo380/enycvtgupf/discussions/2299
https://github.com/feax844/vviwssuakm/discussions/2303
https://github.com/saom1084/crsafmlfuk/discussions/2319
https://github.com/ogo79152/hfzqsnpyhc/discussions/2314
https://github.com/pxdo380/enycvtgupf/discussions/2300
https://github.com/feax844/vviwssuakm/discussions/2304
https://github.com/ogo79152/hfzqsnpyhc/discussions/2315
https://github.com/saom1084/crsafmlfuk/discussions/2320
https://github.com/pxdo380/enycvtgupf/discussions/2301
https://github.com/feax844/vviwssuakm/discussions/2305
https://github.com/ogo79152/hfzqsnpyhc/discussions/2316
https://github.com/pxdo380/enycvtgupf/discussions/2302
https://github.com/saom1084/crsafmlfuk/discussions/2321
https://github.com/ogo79152/hfzqsnpyhc/discussions/2317
https://github.com/feax844/vviwssuakm/discussions/2306
https://github.com/saom1084/crsafmlfuk/discussions/2322
https://github.com/pxdo380/enycvtgupf/discussions/2303
https://github.com/ogo79152/hfzqsnpyhc/discussions/2318
https://github.com/feax844/vviwssuakm/discussions/2307
https://github.com/pxdo380/enycvtgupf/discussions/2304
https://github.com/saom1084/crsafmlfuk/discussions/2323
https://github.com/feax844/vviwssuakm/discussions/2308
https://github.com/ogo79152/hfzqsnpyhc/discussions/2319
https://github.com/pxdo380/enycvtgupf/discussions/2305
https://github.com/saom1084/crsafmlfuk/discussions/2324
https://github.com/feax844/vviwssuakm/discussions/2309
https://github.com/saom1084/crsafmlfuk/discussions/2325
https://github.com/feax844/vviwssuakm/discussions/2310
https://github.com/ogo79152/hfzqsnpyhc/discussions/2320
https://github.com/pxdo380/enycvtgupf/discussions/2306
https://github.com/saom1084/crsafmlfuk/discussions/2326
https://github.com/ogo79152/hfzqsnpyhc/discussions/2321
https://github.com/feax844/vviwssuakm/discussions/2311
https://github.com/ogo79152/hfzqsnpyhc/discussions/2322
https://github.com/pxdo380/enycvtgupf/discussions/2307
https://github.com/saom1084/crsafmlfuk/discussions/2327
https://github.com/feax844/vviwssuakm/discussions/2312
https://github.com/ogo79152/hfzqsnpyhc/discussions/2323
https://github.com/pxdo380/enycvtgupf/discussions/2308
https://github.com/saom1084/crsafmlfuk/discussions/2328
https://github.com/feax844/vviwssuakm/discussions/2313
https://github.com/ogo79152/hfzqsnpyhc/discussions/2324
https://github.com/pxdo380/enycvtgupf/discussions/2309
https://github.com/saom1084/crsafmlfuk/discussions/2329
https://github.com/ogo79152/hfzqsnpyhc/discussions/2325
https://github.com/feax844/vviwssuakm/discussions/2314
默认情况下,SDK 会尝试从环境变量 SENTRY_RELEASE 中读取该值(在浏览器 SDK 中,将从 window.SENTRY_RELEASE 中读取该值,如果可用)。
environment
设置环境。此字符串为自由形式,默认情况下不设置。一个 release 可以与多个环境相关联,以便在 UI 中将它们分开(可以考虑staging 与 prod 或类似的方式)。
默认情况下,SDK 将尝试从 SENTRY_ENVIRONMENT 环境变量中读取该值(浏览器 SDK 除外)。
sampleRate
配置错误事件的采样率,范围为 0.0 到 1.0。默认值为 1.0,表示发送了 100% 的错误事件。如果设置为 0.1,则仅发送 10% 的错误事件。事件是随机选择的。
maxBreadcrumbs
这个变量控制应该捕获的面包屑( breadcrumbs )总数。默认值为 100。
attachStacktrace
当启用时,堆栈跟踪将自动附加到所有记录的消息。堆栈跟踪总是附加到异常;然而,当设置此选项时,堆栈跟踪也会与消息一起发送。例如,该选项意味着堆栈跟踪显示在所有日志消息的旁边。
该选项默认为 off。
对于有堆栈跟踪和没有堆栈跟踪的事件,Sentry中的分组是不同的。结果,在为某些事件启用或禁用此 flag 时,您将获得新的组。
sendDefaultPii
如果启用此 flag,则某些个人识别信息(PII)将由 active integrations 添加。默认情况下,不发送此类数据。如果可能的话,我们建议默认情况下启用此功能以发送所有此类数据,并使用管理 敏感数据 的功能手动删除您不想发送的内容。
denyUrls
与不应该发送到 Sentry 的错误 URL 相匹配的字符串或正则表达式模式列表。默认情况下,将发送所有错误。这是一个 “contains(包含)” 匹配整个文件 URL。因此,如果你添加 foo.com,它也会匹配 https://bar.com/myfile/foo.com。默认情况下,将发送所有错误。
allowUrls
匹配错误 URL 的字符串列表或正则表达式模式的遗留别名,这些错误 URL 应该专门发送给 Sentry。默认情况下,将发送所有错误。这是一个 “contains(包含)” 匹配整个文件 URL。因此,如果您将 foo.com 添加到它,它也将匹配 https://bar.com/myfile/foo.com。默认情况下,所有错误将被发送。
autoSessionTracking
当设置为 true 时,SDK 将发送 session 事件给 Sentry。所有浏览器 SDK 都支持这一点,每个页面加载都向 Sentry 发送一个 session。
normalizeDepth
Sentry SDK 将任何上下文数据标准化到给定深度。任何包含比其更深的结构的数据的 key 都将被修剪并使用其类型([Object] 或 [Array])进行标记,而无需进一步进行操作。默认情况下,walking 的深度为 3 级。
Integration Configuration
对于许多平台,SDK 集成可以与之一起配置。在一些平台上,这是 init() 调用的一部分,而在另一些平台上,则应用不同的模式。
integrations
把自己当傻瓜,不懂就问,你会学的更多
要纠正别人之前,先反省自己有没有犯错
不要等待机会,而要创造机会。
态度决定命运。
量变引起质变,知识重在积累。
有怎样的开始,就有怎样的结束。
行动是通往知识的唯一道路。
当你能梦的时候就不要放弃梦。
快乐要懂得分享,才能加倍地快乐。
良好的习惯永远是一个人成功的法宝。
总结,就是为了在高考中不留下任何遗憾。
良好的生活习惯对人的一生都至关重要。
一个今天胜过两个明天。
把你的脸迎向阳光,那就不会有阴影。
经验是由痛苦中萃取出来的。
闲事闲话闲思是学习的大敌。
不要被失败吓到,不要被胜利冲昏头脑。
一个成功者只知抱定理想,向前行进。
乐观地对待失败,成功就会向你招手。
你不能左右天气,但你能转变你的心情。
始终保持积极向上的精神状态,就会创造出惊人的成绩。
积极的人在每一次失败中都看到机会。
含累播种的人一定能含笑收获。
一个人最大的破产是绝望,最大的资产是希望。
做对的事情比把事情做对重要。
平时和考试一样,考试方和平时一样。
每天告诉自己一次:我真的很不错。
生活中若没有明天,就像生活中没有阳光一样。
发光并非太阳的专利,你也可以发光。
人只要不失去方向,就不会失去自己。
嫉妒别人,仇视异己,就等于把生命交给别人。
平生不做皱眉事,世上应无切齿人。
嫉妒别人,仇视异己,就等于把生命交给别人。
平生不做皱眉事,世上应无切齿人。
智者顺时而谋,愚者逆时而动。
心量狭小,则多烦恼,心量广大,智慧丰饶。
人若勇敢就是自己最好的朋友
不可能』只存在于蠢人的字典里
抱最大的希望,为最大的努力,做最坏的打算
家!甜蜜的家!天下最美好的莫过于家
游手好闲会使人心智生锈
每一件事都要用多方面的角度来看它
有理想在的地方,地狱就是天堂
有希望在的地方,痛苦也成欢乐
所有的胜利,与征服自己的胜利比起来,都是微不足道
所有的失败,与失去自己的失败比起来,更是微不足道
上帝从不埋怨人们的愚昧,人们却埋怨上帝的不公平
在一些 SDK 中,在库初始化时通过这个参数配置集成。要了解更多信息,请参阅我们的文档了解特定的集成。
defaultIntegrations
这可以用来禁用默认添加的集成。当设置为 false 时,不会添加默认的集成。
Hooks
这些选项可用于以各种方式 hook SDK,以定制事件的报告。
beforeSend
使用 SDK-specific 事件对象调用此函数,可以返回修改后的事件对象或不返回任何内容,以跳过报告事件。例如,这可以用于在发送前手动剥离 PII。
beforeBreadcrumb
在将面包屑(breadcrumb)添加到作用域(scope)之前,使用 SDK 特定的面包屑(SDK-specific breadcrumb)对象调用此函数。当该函数未返回任何内容时,将删除 breadcrumb。要传递 breadcrumb,请返回第一个参数,其中包含 breadcrumb 对象。回调通常会获得第二个参数(称为“hint”),该参数包含创建 breadcrumb 的原始对象,以进一步自定义面包屑的外观。
Transport Options
Transports 被用来发送事件到 Sentry。可以在某种程度上对传输进行定制,以更好地支持高度特定的部署。
transport
切换出用于发送事件的 transport。如何运作取决于 SDK。例如,它可以用于捕获事件以进行单元测试,或通过需要代理身份验证的更复杂的设置发送事件。
Tracing Options
tracesSampleRate
0 到 1 之间的数字,控制给定事务发送到哨兵的概率百分比。(0表示0%,1表示100%)同样适用于应用程序中创建的所有事务。必须定义这个或 tracesSampler 以启用跟踪。
tracesSampler
一个函数负责确定一个给定的事务将被发送到 Sentry 的概率百分比。它将自动被传递有关事务和创建它的上下文的信息,并且必须返回一个介于 0(被发送的概率为0%)和 1(被发送的概率为100%) 之间的数字。还可以用于过滤事务,对不需要的事务返回0。必须定义这个或 tracesSampleRate 来启用跟踪。
Releases & Health
一个 release 是部署到环境中的代码版本。当您向 Sentry 提供有关 release 的信息时,您可以:
确定新版本中引入的问题和回归
预测哪个提交引起了问题,谁可能负责
通过在提交消息中包含问题编号来解决问题
在部署代码时接收电子邮件通知
此外,releases 还用于将 source maps 应用到压缩的 JavaScript 中,以查看原始的、未转换的源代码。
Bind the Version
在配置客户端 SDK 时包含一个 release ID(通常称为 “version” )。这个 ID 通常是一个 git SHA 或自定义版本号。
release 名称不能:
包含换行符或空格
使用正斜杠(/),反斜杠(),句点(.),或双句点(…)
超过 200 个字符
每个组织的发布是全局的;在它们前面加上一些特定于项目(project-specific)的东西,以方便区分。