zoukankan      html  css  js  c++  java
  • mysql 5.7 内存使用监控

    5.7 中的performance_schema 已经有能力监控mysql 的内存使用情况了,对于这一点也是要通过instrument 来实现的,由于内存这一块没有对应的consumer 所以只要

    配置好instrument 就行了

    1、例子:

    /etc/my.cnf

    [mysqld]
    datadir                                    =/usr/local/mysql/data
    basedir                                    =/usr/local/mysql
    performance_schema_instrument              ='memory%=counted'
    select event_name,current_alloc from sys.memory_global_by_current_bytes limit 10;
    +-----------------------------------------------------------------------------+---------------+
    | event_name                                                                  | current_alloc |
    +-----------------------------------------------------------------------------+---------------+
    | memory/innodb/buf_buf_pool                                                  | 131.06 MiB    |
    | memory/innodb/log0log                                                       | 32.01 MiB     |
    | memory/performance_schema/events_statements_history_long                    | 13.66 MiB     |
    | memory/performance_schema/events_statements_history_long.sqltext            | 9.77 MiB      |
    | memory/performance_schema/events_statements_history_long.tokens             | 9.77 MiB      |
    | memory/performance_schema/events_statements_summary_by_digest.tokens        | 9.77 MiB      |
    | memory/performance_schema/table_handles                                     | 9.06 MiB      |
    | memory/performance_schema/events_statements_summary_by_thread_by_event_name | 8.67 MiB      |
    | memory/mysys/KEY_CACHE                                                      | 8.00 MiB      |
    | memory/performance_schema/memory_summary_by_thread_by_event_name            | 5.62 MiB      |
    +-----------------------------------------------------------------------------+---------------+
    

      

  • 相关阅读:
    函数模板的局限性级解决方法(第三代具体化)
    模板实现机制
    函数模板与普通函数的区别以及调用规则
    函数模板基本用法及泛型
    向上类型转换和向下类型转换
    虚析构和纯虚析构
    纯虚函数和抽象类
    多态原理
    静态联编和动态联编即多态的概念
    虚基类的内部工作原理
  • 原文地址:https://www.cnblogs.com/nsw2018/p/6687614.html
Copyright © 2011-2022 走看看