首页 文章 精选 留言 我的

精选列表

搜索[v8],共719篇文章
优秀的个人博客,低调大师

🎉夜莺监控 V8 发版,内置支持 DeepSeek 对接

夜莺监控发布了 v8.beta14 版本,这个版本是可以上生产的,强烈建议升级。正式版会在每年夜莺大会上发布,今年预计是 7.4 号。 下面快速介绍一下 v8.beta14 的主要更新。 beta14 重点更新 支持 Postgres 告警 又支持了一个新的告警数据源:Postgres,可以对 Postgres 中的数据做异常判定啦,有些业务数据(比如订单数据、商品数据)可能是存在 Postgres 或 MySQL 等 OLTP 库中,所以这算是多了一个业务数据告警的手段,业务监控的告警规则不用很多,但是通常都极为关键。 您可以在集成中心-数据源添加 Postgres 数据源,目前的开源版本,该数据源仅支持告警,不支持看图(即时查询、仪表盘等)。 对接 AI 做 Summary 告警事件 Pipeline 新增一个新的内置处理器:AI Summary,可以使用 DeepSeek 等对告警事件做总结,将总结之后的信息附加到告警事件中,进而通过告警消息发出。让您的监控与 AI 之间的联动触手可及。 填入 AI 服务器的地址和 API Key,以及要使用的模型,即可引入 AI Summary 的能力。夜莺内置提供了一个提示词,您可以根据自己的需求修改提示词。 更多使用文档,可以参考红色箭头指向的那个使用说明。 事件处理器非常具有想象力,欢迎给我们投稿分享您的实践案例。 告警事件匿名访问 重新设计了告警事件匿名访问的逻辑。您可以在告警事件详情页面找到生成分享链接的入口。最新逻辑是: 默认不支持匿名访问,必须登录才能看到事件详情 通过生成分享链接可以生成一个带 token(有过期时间)的 URL,访问那个 URL 就可以匿名访问了 如果夜莺配置文件 config.toml 中直接开启了全局的匿名访问,则匿名访问的 token 就没用了,只要访问/share/alert-his-events/${id}就会直接放行,配置文件中的全局匿名访问配置位置是: [Center.AnonymousAccess] PromQuerier = true # 就是下面这个 AlertDetail = true 如果夜莺开放在公网,请不要打开匿名访问! 其他 Changelog 请参考github release页面。 升级须知 大家可以从夜莺的github releases页面下载到最新的发布包。 v6/v7版本都可以平滑升级: 建议先备份老版本的二进制、配置、integrations 目录等,留好后路,然后就可以放心大胆升级了 如果夜莺所用的DB账号有建表、改表权限,会自动更新表结构,否则就要参考代码仓库里docker/migratesql手工改表结构了 integrations 目录可以直接替换成新版 配置文件 etc/config.toml 建议认真 diff 一下 容器启动的话,直接拉取 latest 镜像重启即可 夜莺产品特性介绍的PPT 有些人可能对夜莺的产品还不太了解,特准备了一份 PPT,请参考:PPT。

优秀的个人博客,低调大师

Deno 1.3.1 发布,基于 V8 的 TypeScript 运行时

Deno 1.3.1现已发布,该版本更新内容如下: 修复:解析文件 URL 时允许isolated“%”(#7108) 修复:Blob.arrayBuffer 返回 Uint8Array(#7086) 修复:带有破折号的 CLI 参数解析(#7039) 修复:从任何有效的 bodySource 创建 body 流(#7128) 修复:细化权限请求/撤销(#7074) 修复:URLSearchParams 中的多个空格的处理(#7068) core:启用 WebAssembly.instantiateStreaming(#7043) core:添加缺少的 HeapLimits 导出(#7047) upgrade:swc_ecmascript、deno_lintdprint(#7098) Changes in std version 0.66.0: BREAKING(std/datetime):删除 currentDayOfYear(#7059) feat(std/node):添加 basic asserts(#7091) feat(std/datetime):泛化解析器,添加 formatter(#6619) fix(std/node):Misnamed assert exports(#7123) fix(std/encoding/toml):阻止 TOML 解析器检测字符串中的数字。(#7064) fix(std/encoding/csv):改进 ParseError 上的错误消息(#7057) Install / Upgrade Using Deno: deno upgrade --version 1.3.1 With Shell: curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.3.1 With PowerShell: $v="1.3.1"; iwr https://deno.land/x/install/install.ps1 -useb | iex 更新说明:https://github.com/denoland/Deno/releases/

优秀的个人博客,低调大师

Deno 1.2.1 发布,基于 V8 的 TypeScript 运行时

Deno 于 2020.07.23发布了 v1.2.1 版本。用户可以使用以下命令安装 Deno v1.2.1 版本: Linux/macOS: curl -fsSL https://x.deno.js.cn/install.sh | sh -s v1.2.1 Windows: $v="1.2.1"; iwr https://x.deno.js.cn/install.ps1 -useb | iex Deno CLI 的变更: fix: IPv6 hostname should be compressed (#6772) fix: Ignore polling errors caused byreturn()in watchFs (#6785) fix: ImproveURLcompatibility (#6807) fix:ModuleSpecifierremoves relative path parts (#6762) fix: Share reqwest client between fetch calls (#6792) fix: add icon and metadata todeno.exeon Windows (#6693) fix: panic for runtime error in TS compiler (#6758) fix: providing empty source code for missing compiled files (#6760) refactor: MakeOpDispatchera trait (#6736,#6742) refactor: Remove duplicate code and allow filename overwrite for DomFile (#6817,#6830) upgrade: Rust 1.45.0 (#6791) upgrade: rusty_v8 0.7.0 (#6801) upgrade: tokio 0.2.22 (#6838) Deno 标准库(Deno Standard Modules) v0.62.0 的变更: BREAKING(std/fs): removereadFileStrandwriteFileStr(#6848,#6847) feat(std/encoding): addascii85module (#6711) feat(std/node): addstring_decoder(#6638) fix(std/encoding/toml): could not parse strings with apostrophes/semicolons (#6781) fix(std/testing):assertThrowsinheritance (#6623) fix(std/wasi): remove number overload from rights inpath_open(#6768) refactor(std/datetime): improve weekOfYear (#6741) refactor(std/path): enrich the types inparse_format_test(#6803)

优秀的个人博客,低调大师

Deno 1.2.0 发布,基于 V8 的 TypeScript 运行时

Deno 于 2020.07.13 发布了 v1.2.0 版本。 Deno CLI 的变更: feat(cli): 为 “deno upgrade” 命令添加--cert选项 (#6609) feat(cli): 为 “deno install” 命令添加--config选项 (#6204) feat(cli): 为 “deno info” 命令添加--json选项 (#6372) feat(cli): 添加--no-check选项 (#6456) feat(cli): 为 “deno upgrade” 命令添加--output选项 (#6352) feat(cli): 添加DENO_CERT环境变量 (#6370) feat(cli): 为 bundle 添加 lockfile 功能支持 (#6624) feat(cli/js): 为writeTextFile和writeTextFileSync添加WriteFileOptions(#6280) feat(cli/js): 为Buffer.bytes添加copy参数 (#6697) feat(cli/js): Addperformanceuser timing APIs (#6421) feat(cli/js): Addsorted,trailingComma,compactanditerableLimitto InspectOptions(#6591) feat(cli/js):Deno.chown()makeuid,gidargs optional (#4612) feat(doc): Improve terminal printer (#6594) feat(test): Add support for regex in filter flag (#6343) feat(unstable): AddDeno.consoleSize()(#6520) feat(unstable): AddDeno.ppid(#6539,#6717) fix(cli): Don’t panic when no"HOME"env var is set (#6728) fix(cli): Harden pragma and reference parsing in module analysis (#6702) fix(cli): Panic when stdio isnullon windows (#6528) fix(cli): Parsing of --allow-netflag (#6698) fix(cli/js): Allow Buffer to storeMAX_SIZEbytes (#6570) fix(cli/js): Definition ofURLconstructor (#6653) fix(cli/js):Deno.setRawshouldn’t panic on ENOTTY (#6630) fix(cli/js): Fix process socket types (#6676) fix(cli/js): Fix relative redirect in fetch API (#6715) fix(cli/js): Implement IPv4 hostname parsing inURL(#6707) fix(cli/js): Implement spec-compliant host parsing forURL(#6689) fix(cli/js):Responseconstructor default properties in fetch API (#6650) fix(cli/js): Update timers to ignore Date Override (#6552) perf(cli): Improve.arrayBuffer()speed in fetch API (#6669) refactor(core): Remove control slice from ops (#6048) Deno 标准库(Deno Standard Modules) v0.61.0 的变更: BREAKING(std/encoding/hex): 简化了 API (#6690) feat(std/datetime): 添加weekOfYear(#6659) feat(std/log): Expose Logger type and improve public interface forget&setlog levels (#6617) feat(std/node): Addbuf.equals()(#6640) feat(std/wasi): Implementfd_readdir(#6631) fix(std):base64in workers (#6681) fix(std):md5in workers (#6662) fix(std/http): Properly return port 80 in_parseAddrFromStr(#6635) fix(std/mime): Boundary random hex values (#6646) fix(std/node): Addencodingargument toBuffer.byteLength(#6639) fix(std/tesing/asserts):AssertEquals/NotEqualsshould use milliseconds in Date (#6644) fix(std/wasi): Returnerrno::successfrom fd_tell (#6636) 中国用户可以使用以下命令安装 Deno v1.2.0 版本: Linux/macOS: curl -fsSL https://x.deno.js.cn/install.sh | sh -s v1.2.0 Windows: $v="1.2.0"; iwr https://x.deno.js.cn/install.ps1 -useb | iex

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

腾讯云软件源

腾讯云软件源

为解决软件依赖安装时官方源访问速度慢的问题,腾讯云为一些软件搭建了缓存服务。您可以通过使用腾讯云软件源站来提升依赖包的安装速度。为了方便用户自由搭建服务架构,目前腾讯云软件源站支持公网访问和内网访问。

Nacos

Nacos

Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service 的首字母简称,一个易于构建 AI Agent 应用的动态服务发现、配置管理和AI智能体管理平台。Nacos 致力于帮助您发现、配置和管理微服务及AI智能体应用。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据、流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

用户登录
用户注册