github.com/kamilsk/grafaman@v1.0.0-beta3.0.20201207211242-3e0d02dd84ce/internal/cnf/features.go (about)

     1  package cnf
     2  
     3  import "go.octolab.org/toolkit/config"
     4  
     5  // Features defines a list of available features.
     6  var Features = config.Features{
     7  	{
     8  		Name:    "cache",
     9  		Enabled: true,
    10  		Brief:   "Store state of metrics between calls.",
    11  		Docs:    "https://www.notion.so/octolab/Cache-layer-9766d3fbe07d4eb1808f6165fff8c5d0?r=0b753cbf767346f5a6fd51194829a2f3",
    12  	},
    13  	{
    14  		Name:    "debug",
    15  		Enabled: true,
    16  		Brief:   "Enable logger and run server with pprof.",
    17  		Docs:    "https://www.notion.so/octolab/Debugger-95877ccae2ee4168845c54066a443fe3?r=0b753cbf767346f5a6fd51194829a2f3",
    18  	},
    19  	{
    20  		Name:    "grafonnet",
    21  		Enabled: false,
    22  		Brief:   "Declare dashboard as code.",
    23  		Docs:    "https://www.notion.so/octolab/Grafonnet-3cd366ab76e146db82fd28f520bbdf68?r=0b753cbf767346f5a6fd51194829a2f3",
    24  	},
    25  	{
    26  		Name:    "paas",
    27  		Enabled: true,
    28  		Brief:   "Support app.toml and .env.paas to fetch configuration.",
    29  		Docs:    "https://www.notion.so/octolab/Avito-integration-066415cfcd914e20af7408e45272e98c?r=0b753cbf767346f5a6fd51194829a2f3",
    30  	},
    31  	{
    32  		Name:    "repl",
    33  		Enabled: true,
    34  		Brief:   "Enable interactive REPL mode to analyze data.",
    35  		Docs:    "https://www.notion.so/octolab/REPL-support-62f1301f41df4e8681527e268e10f539?r=0b753cbf767346f5a6fd51194829a2f3",
    36  	},
    37  }