| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # This configuration file controls the behavior of the Dashboard UI, available
- # at http://my-graphite-server/dashboard/.
- #
- # This file must contain a [ui] section that defines values for all of the
- # following settings.
- [ui]
- default_graph_width = 400
- default_graph_height = 250
- automatic_variants = true
- refresh_interval = 60
- autocomplete_delay = 375
- merge_hover_delay = 750
- # You can set this 'default', 'white', or a custom theme name.
- # To create a custom theme, copy the dashboard-default.css file
- # to dashboard-myThemeName.css in the content/css directory and
- # modify it to your liking.
- theme = default
- [keyboard-shortcuts]
- toggle_toolbar = ctrl-z
- toggle_metrics_panel = ctrl-space
- erase_all_graphs = alt-x
- save_dashboard = alt-s
- completer_add_metrics = alt-enter
- completer_del_metrics = alt-backspace
- give_completer_focus = shift-space
- # These settings apply to the UI as a whole, all other sections in this file
- # pertain only to specific metric types.
- #
- # The dashboard presents only metrics that fall into specified naming schemes
- # defined in this file. This creates a simpler, more targetted view of the
- # data. The general form for defining a naming scheme is as follows:
- #
- #[Metric Type]
- #scheme = basis.path.<field1>.<field2>.<fieldN>
- #field1.label = Foo
- #field2.label = Bar
- #
- #
- # Where each <field> will be displayed as a dropdown box
- # in the UI and the remaining portion of the namespace
- # shown in the Metric Selector panel. The .label options set the labels
- # displayed for each dropdown.
- #
- # For example:
- #
- #[Sales]
- #scheme = sales.<channel>.<type>.<brand>
- #channel.label = Channel
- #type.label = Product Type
- #brand.label = Brand
- #
- # This defines a 'Sales' metric type that uses 3 dropdowns in the Context Selector
- # (the upper-left panel) while any deeper metrics (per-product counts or revenue, etc)
- # will be available in the Metric Selector (upper-right panel).
|