投稿時間:2021-10-11 19:26:29 RSSフィード2021-10-11 19:00 分まとめ(31件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese キャッシュレス時代のミニ財布「Me-po」進化版がMakuakeでプロジェクト実施中 https://japanese.engadget.com/me-po-094451042.html makuake 2021-10-11 09:44:51
TECH Engadget Japanese 火星の生命を探すのに最適の場所、Perseverance撮影の画像から特定 https://japanese.engadget.com/perseverance-jezero-craters-watery-past-093057007.html perseverance 2021-10-11 09:30:57
TECH Engadget Japanese 富士フイルムX-Pro3とオールドレンズの沼にハマる https://japanese.engadget.com/x-pro-3-093023875.html 富士フイルムXProとオールドレンズの沼にハマる写真が好きカメラが好きとなってくると、だんだん気になってくるのが、いわゆる「オールドレンズ」ではないでしょうか。 2021-10-11 09:30:23
TECH Engadget Japanese Pixel 6 / Pro製品ページが流出、5000万画素カメラや5年セキュリティ更新保証など https://japanese.engadget.com/pixel-6-pro-features-leaked-093020433.html google 2021-10-11 09:30:20
IT ITmedia 総合記事一覧 [ITmedia Mobile] モバイルWi-Fiとスマホが1台になった「スマートWi-Fi」登場 月3278円から https://www.itmedia.co.jp/mobile/articles/2110/11/news130.html itmediamobile 2021-10-11 18:08:00
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Baseのhtml編集が何故か反映されない https://teratail.com/questions/363904?rss=all Baseのhtml編集が何故か反映されない前提・実現したいことBaseのhtml編集appを使用してロゴ画像を希望のサイズに指定しました。 2021-10-11 19:00:07
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) テーブルの行に対して、ボーダーを適用する方法 https://teratail.com/questions/363903?rss=all 適用 2021-10-11 18:53:53
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) シートをコピーしたファイルのアクティブシートを一つにしたい https://teratail.com/questions/363902?rss=all シートをコピーしたファイルのアクティブシートを一つにしたい前提・実現したいことnamexlsxには「名簿」シートがあります。 2021-10-11 18:36:41
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) eclipseのファイルツリー表示の色を変更したい https://teratail.com/questions/363901?rss=all eclipseのファイルツリー表示の色を変更したいeclipseのダークテーマを使っているのですが、プロジェクト・エクスプローラー等で表示されているファイル名の色や、選択した際の背景の色が見づらいため、白などの目立つ色に変更したいと思っています。 2021-10-11 18:30:09
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 【WordPress】ページネーションに設定したサムネイルが、記事ごとに設定したものに対応していない https://teratail.com/questions/363900?rss=all 【WordPress】ページネーションに設定したサムネイルが、記事ごとに設定したものに対応していない発生する現象【ページネーションに設定したサムネイルが、記事ごとに設定したものに対応していない】添付のコードだと、カスタムフィールドで設定した、サムネイルは確かに設定されますが「前の記事を読む」のサムネイルも「次の記事を読む」のサムネイルも全く同じになってしまう現象が発生しております。 2021-10-11 18:28:19
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) rvm defaultのrubyバージョンを変更したい https://teratail.com/questions/363899?rss=all rvmdefaultのrubyバージョンを変更したいよろしくお願いいたします。 2021-10-11 18:26:19
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) [blockchain] blockの改ざんはすなわち、有効ではないblockをmineしているということでしょうか? https://teratail.com/questions/363898?rss=all blockchainblockの改ざんはすなわち、有効ではないblockをmineしているということでしょうか前提例えば、各nodeがindexの長さがのblockchainを持っているとします。 2021-10-11 18:11:50
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 【Rails】N+1問題が解決できない https://teratail.com/questions/363897?rss=all その中で、N問題が発生してしまい、eagerloadを試してみましたが、解決できません。 2021-10-11 18:11:48
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Ruby】injectについて https://qiita.com/kat0/items/26a0322a445811f45bcb inject 2021-10-11 18:45:01
海外TECH DEV Community How to manage object in Angular FormControl https://dev.to/shhdharmen/how-to-manage-object-in-angular-formcontrol-2ph4 How to manage object in Angular FormControlIn this tutorial we will learn how to manage object in FormControl and handle conversion for inputGenerally we use FormControl with either string or boolean types and hence it manages only simple values But what if we want to manage just more than primitive data types We can do that let s see how For example in this tutorial we will learn how to get country code and number as separate entities from the same form control and we will also create custom input for the same to handle the conversion between UI and value The Telephone ClassLet s assume that we have a Telephone class which will hold the related values export class Telephone constructor public countryCode string public phoneNumber string Next let s take an input type tel in which we want to hold the Telephone Component selector app root template lt input type tel name telephone id telephone formControl telephone gt lt div gt Value telephone value json lt div gt export class AppComponent telephone new FormControl new Telephone Notice how we have initialized the new Telephone class in FormControl Let s take a look at output now The first thing you will notice is that input is showing object Object in it s value because it s a string representation of the object in our case it s a member of Telephone class To fix input s value we can simply provide the toString method in the Telephone class You can read more about it on MDN docs export class Telephone constructor public countryCode string public phoneNumber string toString return this countryCode amp amp this phoneNumber this countryCode this phoneNumber The second thing is that FormControl s value has the desired Telephone s structure initially But if you modify the input FormControl s value will change to string We will need to work on the value conversion from UI to FormControl For that we will create a custom input directive for input type tel using CustomValueAccessor Custom Input for TelephoneThe initial code for InputTelDirective directive looks like below src app shared directives input tel directive tsimport Directive from angular core import ControlValueAccessor NG VALUE ACCESSOR from angular forms Directive selector input type tel providers provide NG VALUE ACCESSOR useExisting InputTelDirective multi true export class InputTelDirective implements ControlValueAccessor constructor writeValue obj any void registerOnChange fn any void registerOnTouched fn any void If you re new to ControlValueAccessor you can read more about it at Never again be confused when implementing ControlValueAccessor in Angular forms and How to use ControlValueAccessor to enhance date input with automatic conversion and validationFor this example we are only concerned about writeValue and registerOnChange Simply put writeValue is used to convert FormControl s value to UI value and registerOnChange is used to convert UI value to FormControl s value Conversion from UI to FormControlWe are going to assume that the user will enter the value in this form CC XXXXXX where characters before hyphen combine to country code and the rest is actual contact number Note that this is not intended to be a robust directive just something from which we can start learning To handle that let s first add a listener on input event HostListener input event target value onInput any gt Next let s modify the registerOnChange method registerOnChange fn any void this onInput value string gt let telephoneValues value split const telephone new Telephone telephoneValues telephoneValues fn telephone Let s look at the output now Works nice It is converting UI value to a valid FormControl s value i e Telephone class s member Conversion from FormControl to UIIf you try to set the initial state through FormControl it won t reflect on input telephone new FormControl new Telephone Let s modify the writeValue method to handle the above writeValue value Telephone null void const telephone value new Telephone this renderer setAttribute this elementRef nativeElement value telephone toString Now the value set through FormControl will get reflected to input ValidationNow we will add the validation part so that input supports validation out of the box We will first add NG VALIDATORS in providers src app shared directives input tel directive ts … Directive selector input type tel providers provide NG VALUE ACCESSOR useExisting InputTelDirective multi true provide NG VALIDATORS useExisting InputTelDirective multi true Next we will add isValid method in Telephone class to check validity export class Telephone isValid return this countryCode amp amp this phoneNumber Lastly we will implement the Validator interface and add validate method export class InputTelDirective implements ControlValueAccessor Validator validate control AbstractControl ValidationErrors null const telephone control value as Telephone return telephone isValid null telephone true Let s modify the template to utilize validation Component selector app root template lt input type tel name telephone id telephone formControl telephone class is invalid telephone touched telephone dirty amp amp telephone invalid gt lt div class invalid feedback ngIf telephone touched telephone dirty amp amp telephone invalid gt Invalid Telephone lt div gt lt div gt Value telephone value json lt div gt export class AppComponent telephone new FormControl new Telephone Let s look at the output now ConclusionWe learned how we can manage the object in FormControl and use ControlValueAccessor to handle the conversion The whole code for directive looks like below import Directive ElementRef HostListener Renderer from angular core import AbstractControl ControlValueAccessor NG VALIDATORS NG VALUE ACCESSOR ValidationErrors Validator from angular forms Directive selector input type tel providers provide NG VALUE ACCESSOR useExisting InputTelDirective multi true provide NG VALIDATORS useExisting InputTelDirective multi true export class InputTelDirective implements ControlValueAccessor Validator constructor private elementRef ElementRef lt HTMLInputElement gt private renderer Renderer HostListener input event target value onInput any gt writeValue value Telephone null void const telephone value new Telephone this renderer setAttribute this elementRef nativeElement value telephone toString registerOnChange fn any void this onInput value string gt let telephoneValues value split const telephone new Telephone telephoneValues telephoneValues fn telephone registerOnTouched fn any void validate control AbstractControl ValidationErrors null const telephone control value as Telephone return telephone isValid null telephone true export class Telephone constructor public countryCode string public phoneNumber string toString return this countryCode amp amp this phoneNumber this countryCode this phoneNumber isValid return this countryCode amp amp this phoneNumber I have also created a GitHub repo for all the code above 2021-10-11 09:37:24
海外TECH DEV Community Next.js Dynamic Routes With Contentful's GraphQL API — with Jason Lengstorf https://dev.to/whitep4nth3r/next-js-dynamic-routes-with-contentful-s-graphql-api-with-jason-lengstorf-4ieb Next js Dynamic Routes With Contentful x s GraphQL API ーwith Jason LengstorfI sat down with Jason Lengstorf to talk about Next js and teach him how to generate dynamic routes powered by the Contentful GraphQL API In this video we cover Intro and a bit about my backgroundWhat I like about Next js and ContentfulThoughts on GraphQL vs RESTGraphQL is more environmentally friendly than REST and making tech more accessible to hobby developersPlanning today s projectSetting up the content model in ContentfulAdding entries to ContentfulInstalling the GraphQL Playground app in ContentfulBuilding the GraphQL query in the GraphQL playgroundCreating a new Next js application and using the GitHub CLI and Netlify CLI to set up environment variables to deployUsing getStaticProps to fetch data for the home page via the Contentful GraphQL APIBuilding a list of client side anchor links using next linkUsing getStaticPaths to create dynamic routes at build timeUsing getStaticProps to fetch data for individual dynamic routes with GraphQLStyling the front endDeploying the site to NetlifyI had a great time on Learn with Jason ーand learned a few things along the way too I m excited to speed up my development and deployment process using the Netlify CLI next time I launch a new project Thanks for having me Jason Resources and links getstaticprops static generation View the video transcript 2021-10-11 09:31:03
海外TECH DEV Community Setup Next.js to use Tailwind with Nx https://dev.to/nx/setup-next-js-to-use-tailwind-with-nx-4d57 Setup Next js to use Tailwind with NxIn the previous article we learned how to setup Next js in an Nx workspace In this article we carry that forward by adding TailwindCSS support to our setup It s important to note that you don t need to use a preprocessor with Tailwind ーyou typically write very little CSS on a Tailwind project anyways so using a preprocessor just isn t as beneficial as it would be in a project where you write a lot of custom CSS The official TailwindCSS docs page already has a guide on how to setup Tailwind with Next js Definitely check that out Install and configure Tailwind in an Nx workspaceThe first step is to install the necessary npm packages yarn add tailwindcss latest postcss latest autoprefixer latestThe next step is to create the tailwind config js as well as postcss config js files Tailwind already comes with a utility for that Note previously we generated our app named site into the apps folder of Nx Therefore when generating the Tailwind configuration we need to cd into that folder cd apps sitenpx tailwindcss init p That should generate both of the configuration files directly into the root of our Next js application Make sure you adjust our postcss config js to properly point to our tailwind config file apps site postcss config jsconst join require path module exports plugins tailwindcss config join dirname tailwind config js autoprefixer Include the TailwindCSS stylesThere are two options for including the Tailwind CSS files Directly import them in the global app tsx componentInclude it in the styles css css file that gets imported by the app tsx fileOption Open the main Next js page component app tsx which functions and import the TailwindCSS file instead of styles css import tailwindcss tailwind css function CustomApp Component pageProps AppProps export default CustomApp Option Open styles css clean all the pre generated CSS and include the TailwindCSS components there tailwind base tailwind components tailwind utilities styles css gets imported by the app tsx and thus functions as the global CSS file for our Next js app Finally also in the app tsx remove the header section as we won t need it right now import AppProps from next app import Head from next head import styles css function CustomApp Component pageProps AppProps return lt gt lt Head gt lt title gt Welcome to site lt title gt lt Head gt lt div className app gt lt main gt lt Component pageProps gt lt main gt lt div gt lt gt export default CustomApp Testing the integrationLet s quickly test whether the TailwindCSS integration works by adding the following to our index tsx page component apps site pages index tsxexport function Index return lt div className bg gray gt lt div className max w xl mx auto py px sm px lg py lg px lg flex lg items center lg justify between gt lt h className text xl font extrabold tracking tight text gray sm text xl gt lt span className block gt Ready to dive in lt span gt lt span className block text indigo gt Start your free trial today lt span gt lt h gt lt div className mt flex lg mt lg flex shrink gt lt div className inline flex rounded md shadow gt lt a href className inline flex items center justify center px py border border transparent text base font medium rounded md text white bg indigo hover bg indigo gt Get started lt a gt lt div gt lt div className ml inline flex rounded md shadow gt lt a href className inline flex items center justify center px py border border transparent text base font medium rounded md text indigo bg white hover bg indigo gt Learn more lt a gt lt div gt lt div gt lt div gt lt div gt The result should look like this How do we handle Tailwind config files in a monorepoSo far we ve placed the Tailwind config within our app root directory apps site That makes sense as the app probably knows the Tailwind configs to be designed properly However you might also want some more global cross app configs Think about a company design system where you ll most probably have the same font maybe even colors etc To have a global Nx workspace wide config we can leverage Tailwind presets At the Nx workspace root we define a tailwind workspace preset js Let s add the Tailwind Typography package yarn add tailwindcss typographyNext we add it to our tailwind workspace preset js tailwind workspace preset jsmodule exports theme extend variants extend plugins require tailwindcss typography In order to use the Tailwind preset in our apps site specific Tailwind config we require the file and add it to the presets array of the config apps site tailwind config jsmodule exports presets require tailwind workspace preset js Note I ve seen people use something like const appRootPath require nrwl workspace src utils app root and then concatenate it with the actual config file which obviously also works and gets rid of the relative file import Importing from nrwl workspace should be avoided though and also it is a deep import of a private API that is subject to change Using a relative path should be fine here as the app location will only rarely change Verify that your changes work by adding some paragraphs to your index tsx You can use those mentioned in the Tailwind Typography repo Tailwind CSS PurgingOne of the main advantages of Tailwind is its CSS purging mechanism that allows reducing the final CSS bundle to only the required parts As a result you get a small and optimized CSS file This happens at compile time using the PostCSS configuration Right now if we run npx nx run site export we ll see that there s quite a large CSS file that gets exported This is because Tailwind during development pulls in all kinds of utility class names which you might never actually need Configure CSS PurgingTo enable purging open the tailwind config js for the site app and add the globs to the purge property For our application site it might look as follows apps site tailwind config jsconst join require path module exports purge join dirname pages js ts jsx tsx One of the particularities and also advantages of Nx is that its setup incentivizes the structuring of your logic into apps and libs more details on the docs As a result though our components having Tailwind classes might not only be in the apps site but also within libraries in the libs folder Naively we could just add those globs as well like libs js ts jsx tsx In a large workspace this might however lead to unnecessary parsing of files since not all libs might be used by our Next app To solve this we can dynamically calculate the glob pattern based on which libs our Next js app depends on Nx has a dependency graph which can not only be used to visualize but we can also leverage it in our custom scripts Luckily we don t have to create our own script since in Nx v we added some utility functions that allow us to easily generate glob patterns based on the apps dependencies Change your tailwind config js to the following apps site tailwind config jsconst join require path available since Nx v const createGlobPatternsForDependencies require nrwl next tailwind module exports presets require tailwind workspace preset js purge join dirname pages js ts jsx tsx createGlobPatternsForDependencies dirname darkMode media or media or class theme extend variants extend plugins Note how we import the createGlobPatternsForDependencies function from nrwl next tailwind and pass it the current directory What the function does is simply create a list of paths of potential libs our app depends on For example consider we depend on a lib ui and core the resulting generated paths would look like Users yourname juridev libs ui src stories spec tsx Users yourname juridev libs core src stories spec tsx The exact path obviously depends on your username Nx workspace name and operating system The glob pattern can be customized by specifying the nd parameter of the createGlobPatternsForDependencies function Finally to verify the purging works as intended execute the build or export target on our app nx run site build The resulting CSS file should be only a couple of KBs Enabling Tailwind JITSince purging only happens at build time when you create the deployable bundle the amount of CSS to load during development might be huge depending on which TailwindCSS classes you apply to your HTML elements This might result in an overall slowdown of the debugging tools e g Chrome Devtools To mitigate that the Tailwind team introduced the JIT mode which at the time of writing this article is an experimental feature that can be turned on by adding the mode jit to the Tailwind config apps site tailwind config jsmodule exports mode jit Tailwind s JIT compiler uses its own file watching system so make sure to set the required environment variables likeTAILWIND MODE to watch to get continuous watching as you have the dev server running and change the Tailwind classes Set it to build for a one off compilationNODE ENV should be set to production when doing the final build s t the JIT compiler doesn t watch files but just does a one off compilation Note that Nx already sets the NODE ENV to production when you build or export your Next js app e g using nx serve site You can read all the details about JIT mode on the Tailwind docs ConclusionIn this article we learned abouthow to install TailwindCSS into an Nx workspacehow to configure PostCSS and Tailwindhow to organize Tailwind config files in a monorepohow setup CSS purging with Tailwind and how Nx helps to generate globs for dependent projectsGitHub repositoryAll the sources for this article can be found in this GitHub repository s branch 2021-10-11 09:16:22
海外TECH DEV Community Top 5 Anti-virus for install on your windows computer and it's system requirements https://dev.to/kavinduneth/top-5-anti-virus-for-install-on-your-windows-computer-and-it-s-system-requirements-ame Top Anti virus for install on your windows computer and it x s system requirements AVG anti virus What is AVG Anti virus Block Unsafe Links Downloads amp Email Attachments with AVG Free Antivirus Free Forever Fast amp Easy Antivirus Software Download AVG Antivirus Now Stops viruses Unsafe web link warnings Scans quickly amp quietly Protects forever Blocks malware amp spyware AVG anti virus System requirements OS Windows Windows Windows Windows CPU bit and bit RAM GB Disk space GB available space Additional Requirements Internet connection to download activate and maintain program updates and antivirus database www avg com Avast anti virus What is Avast anti virus Download Avast Free Antivirus and protect your PC against viruses and malware Our best antivirus to keep your PC secure and private Download for free Easy Installation Stop Ransomware Wi Fi Inspector Wi Fi Security Alerts Free Download Avast anti virus System requirements OS Windows Windows Windows Windows RAM GB Disk space GB available space www avast com Kaspersky Anti virus What is Kaspersky Anti virus Kaspersky Anti Virus is a proprietary antivirus program developed by Kaspersky Lab It is designed to protect users from malware and is primarily designed for computers running Microsoft Windows and macOS although a version for Linux is available for business consumers Kaspersky system requirements OS Windows Windows Windows Windows CPU GHz processor or faster RAM GB of free RAM for bit operating systems and GB of free RAM for bit operating systems www kaspersky com antivirus McAfee Anti virus What is MacAfee Anti virus McAfee is a reliable antivirus that you can use to scan your PC for viruses and protect it in real time McAfee performed consistently well in my tests detecting all kinds of malware such as ransomware spyware cryptojackers adware etc Also this antivirus is backed by McAfee Virus Pledge McAfee system requirements OS Windows Windows Windows Windows CPU GHZ processor or higher RAM GB RAM or higher for Vista Windows Windows GB RAM or higher for Windows Minimum MBwww mcafee com Panda Anti virus What is Panda Anti virus Panda Cloud Antivirus is an antivirus software developed by Panda Security a free and a paid version are available It is cloud based in the sense that files are scanned on a remote server without using processing power of the user s machine The cloud technology is based on Panda s Collective Intelligence Panda system requirements OS Windows Windows Windows and bit Windows Vista and bit Windows XP and bit and Windows Professional SP CPU Pentium MHz or higher RAM GB RAM or higher Disk Space MB free space www pandasecurity com Thanks for read this article follow me for get more information s like this please write a comment which Anti virus you like if you have any problem of Anti viruses please write a comment 2021-10-11 09:08:30
Apple AppleInsider - Frontpage News Apple drops new Safari bookmark end-to-end encryption https://appleinsider.com/articles/21/10/11/apple-drops-new-safari-bookmark-end-to-end-encryption?utm_medium=rss Apple drops new Safari bookmark end to end encryptionLess than two weeks after apparently introducing end to end encryption for bookmarks in Safari Apple has dropped the additional protection Safari no longer protects bookmarks with end to end encryption if it ever didIn early October Apple s support documentation was updated to show that Safari bookmarks had been updated to have the same end to end encryption as for example Apple Card transactions and even Memoji Now however the same documentation has removed this and bookmarks are again listed as encrypted only in transit on server Read more 2021-10-11 09:46:11
海外TECH CodeProject Latest Articles Python vs C++ Series: Polymorphism and Duck Typing https://www.codeproject.com/Articles/5314882/Python-vs-Cplusplus-Series-Polymorphism-and-Duck-T polymorphism 2021-10-11 09:36:00
金融 金融庁ホームページ 会計監査の在り方に関する懇談会(令和3事務年度)(第1回)議事要旨について公表しました。 https://www.fsa.go.jp/singi/kaikeikansanoarikata/gijiyousi/20210915.html 会計監査 2021-10-11 11:00:00
ニュース BBC News - Home Firms call for action over surging gas prices https://www.bbc.co.uk/news/business-58830955?at_medium=RSS&at_campaign=KARANGA government 2021-10-11 09:04:29
GCP Google Cloud Platform Japan 公式ブログ Cloud SQL のデータベースのログに基づいてアラートを作成する方法 https://cloud.google.com/blog/ja/products/databases/learn-how-to-create-alerts-based-on-your-database-logs-in-cloud-sql/ 今回のブログ投稿では、CloudSQLインスタンスのログを表示し、それらのログからデータベースで発生するデッドロックの数を確認するための指標を作成し、その指標に基づいてアラートを作成する方法を紹介します。 2021-10-11 10:00:00
北海道 北海道新聞 中国共産党、美意識に介入強める 海外アイドル憧れに苦言 https://www.hokkaido-np.co.jp/article/598760/ 中国共産党 2021-10-11 18:03:27
北海道 北海道新聞 9月道内宿泊 前年比46・9%減 https://www.hokkaido-np.co.jp/article/598806/ 日本旅館 2021-10-11 18:10:00
北海道 北海道新聞 カラフルな高架下で犯罪抑止を 大阪・京橋駅 https://www.hokkaido-np.co.jp/article/598805/ 大阪市都島区 2021-10-11 18:04:00
北海道 北海道新聞 現役運転手がバーテンダー 平岸ハイヤー 有形文化財の旧りんご蔵でバー開業 https://www.hokkaido-np.co.jp/article/598803/ 登録有形文化財 2021-10-11 18:03:44
IT 週刊アスキー NTT Com、ノンコーディングでデータ分析するAIモデルを作れる「Node-AI」 https://weekly.ascii.jp/elem/000/004/071/4071708/ nodeai 2021-10-11 18:30:00
IT 週刊アスキー ソフトバンクロボティクスとSOMPOケア、介護施設6ヵ所で人型ロボット「Pepper」の活用トライアルを開始 https://weekly.ascii.jp/elem/000/004/071/4071709/ pepper 2021-10-11 18:30:00
マーケティング AdverTimes 品川区、PayPayで中小店支援へ 付与総額5億円 https://www.advertimes.com/20211011/article364929/ paypay 2021-10-11 09:21:10
GCP Cloud Blog JA Cloud SQL のデータベースのログに基づいてアラートを作成する方法 https://cloud.google.com/blog/ja/products/databases/learn-how-to-create-alerts-based-on-your-database-logs-in-cloud-sql/ 今回のブログ投稿では、CloudSQLインスタンスのログを表示し、それらのログからデータベースで発生するデッドロックの数を確認するための指標を作成し、その指標に基づいてアラートを作成する方法を紹介します。 2021-10-11 10:00:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)