首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏前端博客

    storybook插件说明: integrations与addons推荐

    官方的:https://storybook.js.org/integrations/https://github.com/storybookjs/storybook/blob/master/ADDONS_SUPPORT.md 在线预览地址插件文档地址转载本站文章《storybook插件说明: integrations与addons推荐》,请注明出处:https://www.zhoulujun.cn/html/webfront

    1.5K20编辑于 2023-03-18
  • 来自专栏joealzhou

    vue项目创建并接入sentry

    初始化项目.png 2、使用vscode打开初始项目安装依赖: $yarn add @sentry/integrations $yarn add @sentry/browser 3、配置sentry ,在项目中的main.ts中加入以下代码: import * as Sentry from "@sentry/browser"; import * as Integrations from "@sentry /integrations"; Sentry.init({ dsn: "https://a21877a8baef4d5688908cf5ee30f848@sentry.io/1420283", integrations: [ new Integrations.Vue({ Vue, attachProps: true }) ] }); 4、运行项目 $

    1.5K10发布于 2020-02-24
  • 来自专栏黑客下午茶

    Sentry(v20.12.1) K8S 云原生架构探索,SENTRY FOR JAVASCRIPT SDK 配置详解

    Default Integrations 所有 Sentry 的 SDK 都提供了集成(integrations),扩展了 SDK 的功能。 要覆盖它们的设置,请提供一个带有配置到 integrations 选项的新实例。 例如,关闭浏览器捕获的控制台调用:integrations: [new Sentry.Integrations.Breadcrumbs({ console: false })]。 integrations: function(integrations) { // integrations will be all default integrations return How to Enable 安装 @sentry/integrations 包,并提供一个带有你配置到 integrations 选项的新实例。加载 SDK 之后,包括插件。

    2K30发布于 2021-05-27
  • 来自专栏黑客下午茶

    Sentry(v20.12.1) K8S 云原生架构探索,JavaScript 性能监控之管理 Transactions

    : [ new Integrations.BrowserTracing({ tracingOrigins: ["localhost", "my-site-url.com", /^\/ : [ new Sentry.Integrations.BrowserTracing({ tracingOrigins: ["localhost", "my-site-url.com ({ dsn: "https://examplePublicKey@o0.ingest.sentry.io/0", integrations: [ new Integrations.BrowserTracing ({ dsn: "https://examplePublicKey@o0.ingest.sentry.io/0", integrations: [ new Integrations.BrowserTracing integrations: [ new Integrations.BrowserTracing({ beforeNavigate: context => { return

    1.2K30发布于 2021-05-27
  • 来自专栏黑客下午茶

    Sentry-JS-SDK-Browser 官方示例最佳实践

    enabled: true, // Custom integrations callback integrations(integrations) { return [new HappyIntegration (), ...integrations]; }, // A release identifier. 将用于允许基于其 origin url 的特定错误 debug:使用有价值的初始化(initialization)/生命周期(lifecycle)信息的调试模式 enabled:是否应该启用 SDK integrations

    1.8K20发布于 2021-05-27
  • 来自专栏卓越笔记

    Sentry 错误监控(Django 错误监控)

    initialize it with the Django integration in your settings.py file: import sentry_sdk from sentry_sdk.integrations.django import DjangoIntegration sentry_sdk.init( dsn="https://xxxxxxxxxxxxxxxx@sentry.io/18xxxx", integrations

    2.8K40编辑于 2023-02-18
  • 来自专栏donghui的博客

    eReviewBoard简要介绍及安装 原

    rombert/ereviewboard 它由如下组件组成: Mylyn Reviews Connector: ReviewBoard以及SCM(如:SVN、Git、CVS) Integrations 其中SCM(如:SVN、Git) Integrations组件如下: 与SVN集成组件:Mylyn Reviews Connector: ReviewBoard Subclipse Integration 主要功能: Connector匹配了ReviewBoard当前所有的属性,支持如下功能: 关闭和重新打开评审请求 发布和废弃评审 选择SCM Integrations

    1K20发布于 2019-04-19
  • 来自专栏AIGC新知

    Claude 现在可以连接到你的真实世界,开始接管你的工作

    Claude 最新的Integrations集成功能,使 Claude 能够通过 Web 和桌面应用与远程 MCP 服务器无缝协作。 支持的Integrations集成 包括: Atlassian 的 Jira 和 Confluence Jira:一款强大的项目与事务跟踪工具,主要用于项目管理、任务跟踪和敏捷开发。 可以看到,Integrations集成涉及到不同领域,主要集中在项目与任务管理、团队协作、自动化与集成、安全与性能优化、金融科技与支付、客户支持以及开发与运维等领域。 之前推出的 Research 功能仅仅支持网页搜索和 Google Workspace,现在通过 Integrations,Claude 还可以搜索连接的任何应用程序。 Integrations集成和高级研究功能现已在 Max、Team 和 Enterprise 计划中提供 Beta 测试版,Pro 版也即将上线。

    1K00编辑于 2025-05-02
  • 来自专栏编程大主教

    ClickHouse 连接多 Kerberos-aware Kafka 集群

    the_second_kafka) SETTINGS kafka_format = 'JSON'; https://clickhouse.com/docs/en/engines/table-engines/integrations /kafka ↩︎ https://clickhouse.com/docs/en/integrations/kafka/kafka-table-engine#2-configure-clickhouse ↩︎ https://clickhouse.com/docs/en/engines/table-engines/integrations/kafka#kafka-kerberos-support ↩︎ github.com/ClickHouse/ClickHouse/issues/28703#issuecomment-1241852550 ↩︎ https://kb.altinity.com/altinity-kb-integrations

    44310编辑于 2024-05-15
  • 来自专栏黑客下午茶

    Sentry 10 K8S 云原生架构探索,Vue App 1 分钟快速接入

    应用程序的最基本配置(仅跟踪顶级组件)如下所示: import Vue from "vue"; import * as Sentry from "@sentry/browser"; import { Integrations integrations: [ new Integrations.BrowserTracing(), ], // 我们建议在生产中调整此值,或使用 tracesSampler 进行更精细的控制

    1K30发布于 2021-05-27
  • 来自专栏JetpropelledSnake

    Prometheus监控学习笔记之prometheus 版本1.7 常用启动参数

    Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations.

    1.8K20发布于 2019-08-29
  • Astro.js 中集成 Vue 框架教程

    integrations: [vue()], }开始使用Astro 使用的是 jsx like的语法,所以如果你是React选手可能会比较熟悉,我这边演示一下Vue使用方法,详细内容可见框架组件 integrations: [vue({ template: { compilerOptions: { // treat any tag that starts with { defineConfig } from 'astro/config';import vue from '@astrojs/vue';export default defineConfig({ integrations { defineConfig } from 'astro/config';import vue from '@astrojs/vue';export default defineConfig({ integrations { defineConfig } from 'astro/config';import vue from '@astrojs/vue';export default defineConfig({ integrations

    92510编辑于 2024-03-17
  • 来自专栏黑客下午茶

    Sentry(v20.12.1) K8S 云原生架构探索,1分钟上手 JavaScript 性能监控

    sentry/browser"; // If taking advantage of automatic instrumentation (highly recommended) import { Integrations automatic instrumentation (highly recommended), but is not // necessary for purely manual usage integrations automatic instrumentation (highly recommended), but is not // necessary for purely manual usage integrations : [new Sentry.Integrations.BrowserTracing()], // To set a uniform sample rate tracesSampleRate:

    77241发布于 2021-05-27
  • 来自专栏数据库相关

    prometheus 版本1.7 常用启动参数

    Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations. Use Prometheus's generic remote        write feature for building remote storage integrations.

    2.1K30发布于 2019-09-18
  • 来自专栏写代码和思考

    Gitlab配置Web Hook关联Jenkins实现push后自动部署

    image.png 第二步,GIT Lab trigger 配置(Web Hook) 打开项目 settings - Integrations, 会看到介绍: Integrations Webhooks

    3K00发布于 2020-03-16
  • 来自专栏前端技术地图

    岛屿架构

    ." /> <Card href="https://astro.build/<em>integrations</em>/" title="<em>Integrations</em>" Astro works and explore the official API docs." /> <Card href="https://astro.build/<em>integrations</em> /" title="<em>Integrations</em>" body="Supercharge your project with new frameworks and libraries

    92760编辑于 2023-10-20
  • 来自专栏福大大架构师每日一题

    ollama v0.15.4 更新:OpenClaw全面上线,优化集成流程与工具解析能力大升级!

    此次 v0.15.4 更新延续了这一整合方向: • cmd/config/integrations.go 中的集成注册表被重构: • 原有的 "clawdbot"、"moltbot" 均映射到新的 Openclaw • 对应的文档新版内容(docs/integrations/openclaw.mdx) 全面替换了旧版文档: • 新增安装命令:npm install -g openclaw@latest • 提供一键配置入口 五、文档更新与兼容性增强 • docs/docs.json 新增: { "source": "/integrations/clawdbot", "destination": "/integrations

    3.6K30编辑于 2026-02-09
  • 来自专栏程序员poetry的专栏

    为你的前端项目接入Sentry

    main.jsimport Vue from "vue";import Router from "vue-router";import * as Sentry from "@sentry/vue";import { Integrations ;Sentry.init({ Vue, dsn: "http://xdsdfafda21212@119.75.24.41:9000/2", integrations: [ new Integrations.BrowserTracing config.plugin.push( new DeleteSourceMapsPlugin(), // 清理sourcemap )}查看 Performance图片Sentry.init() 中,new Integrations.BrowserTracing

    2K141编辑于 2022-07-28
  • 来自专栏黑客下午茶

    快速使用 Docker 上手 Sentry-CLI - 玩转 Source Maps 使用 (create-react-app)

    /App'; import * as Sentry from "@sentry/react"; import { Integrations } from "@sentry/tracing"; Sentry.init ({ dsn: "https://token@your.sentry.com/2", // 你的 Sentry 项目 DSN release: "1.0.0", integrations: [new Integrations.BrowserTracing()] }); ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode

    1.2K20发布于 2021-09-17
  • 来自专栏磐创AI技术团队的专栏

    DeepPavlov: 强大的聊天机器人和对话系统开源AI库(附安装指南)

    Telegram 机器人文档页面 http://docs.deeppavlov.ai/en/master/integrations/telegram.html 团队 DeepPavlov 由 MIPT 这些文档深入探讨了这篇文章中提及的许多主题: 文档[1] http://docs.deeppavlov.ai/en/master/integrations/rest_api.html 文档[2] http ://docs.deeppavlov.ai/en/master/integrations/telegram.html 文档[3] http://docs.deeppavlov.ai/en/master /integrations/ms_bot.html 演示:demo.deeppavlov.ai 文档:docs.deeppavlov.ai 模型列表:http://docs.deeppavlov.ai

    4.5K10发布于 2020-11-09
领券