-
Notifications
You must be signed in to change notification settings - Fork 0
/
grafana.json
1698 lines (1698 loc) · 63 KB
/
grafana.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_comment": "This file is the source of truth for English strings. Edit this in the codebase to change plurals and other phrases for the UI.",
"access-control": {
"add-permission": {
"role-label": "Role",
"serviceaccount-label": "Service Account",
"team-label": "Team",
"title": "Add permission for",
"user-label": "User"
},
"add-permissions": {
"save": "Save"
},
"permission-list": {
"permission": "Permission"
},
"permissions": {
"add-label": "Add a permission",
"no-permissions": "There are no permissions",
"permissions-change-warning": "This will change permissions for this folder and all its descendants. In total, this will affect:",
"role": "Role",
"serviceaccount": "Service Account",
"team": "Team",
"title": "Permissions",
"user": "User"
}
},
"api-keys": {
"empty-state": {
"message": "No API keys found"
}
},
"bouncing-loader": {
"label": "Loading"
},
"browse-dashboards": {
"action": {
"cancel-button": "Cancel",
"cannot-move-folders": "Folders can not be moved",
"delete-button": "Delete",
"delete-modal-invalid-text": "One or more folders contain library panels or alert rules. Delete these first in order to proceed.",
"delete-modal-invalid-title": "Cannot delete folder",
"delete-modal-text": "This action will delete the following content:",
"delete-modal-title": "Delete",
"deleting": "Deleting...",
"manage-permissions-button": "Manage permissions",
"move-button": "Move",
"move-modal-alert": "Moving this item may change its permissions.",
"move-modal-field-label": "Folder name",
"move-modal-text": "This action will move the following content:",
"move-modal-title": "Move",
"moving": "Moving...",
"new-folder-name-required-phrase": "Folder name is required."
},
"counts": {
"alertRule_one": "{{count}} alert rule",
"alertRule_other": "{{count}} alert rules",
"dashboard_one": "{{count}} dashboard",
"dashboard_other": "{{count}} dashboards",
"folder_one": "{{count}} folder",
"folder_other": "{{count}} folders",
"libraryPanel_one": "{{count}} library panel",
"libraryPanel_other": "{{count}} library panels",
"total_one": "{{count}} item",
"total_other": "{{count}} items"
},
"dashboards-tree": {
"collapse-folder-button": "Collapse folder {{title}}",
"expand-folder-button": "Expand folder {{title}}",
"name-column": "Name",
"select-all-header-checkbox": "Select all",
"select-checkbox": "Select",
"tags-column": "Tags"
},
"folder-actions-button": {
"delete": "Delete",
"folder-actions": "Folder actions",
"manage-permissions": "Manage permissions",
"move": "Move"
},
"folder-picker": {
"accessible-label": "Select folder: {{ label }} currently selected",
"button-label": "Select folder",
"clear-selection": "Clear selection",
"empty-message": "No folders found",
"error-title": "Error loading folders",
"search-placeholder": "Search folders",
"unknown-error": "Unknown error"
},
"manage-folder-nav": {
"alert-rules": "Alert rules",
"dashboards": "Dashboards",
"panels": "Panels"
},
"new-folder-form": {
"cancel-label": "Cancel",
"create-label": "Create",
"name-label": "Folder name"
},
"no-results": {
"clear": "Clear search and filters",
"text": "No results found for your query"
}
},
"clipboard-button": {
"inline-toast": {
"success": "Copied"
}
},
"command-palette": {
"action": {
"change-theme": "Change theme...",
"dark-theme": "Dark",
"light-theme": "Light"
},
"empty-state": {
"message": "No results found"
},
"search-box": {
"placeholder": "Search or jump to..."
},
"section": {
"actions": "Actions",
"dashboard-search-results": "Dashboards",
"folder-search-results": "Folders",
"pages": "Pages",
"preferences": "Preferences",
"recent-dashboards": "Recent dashboards"
}
},
"common": {
"locale": {
"default": "Default"
},
"save": "Save"
},
"connections": {
"connect-data": {
"category-header-label": "Data sources",
"empty-message": "No results matching your query were found"
},
"search": {
"placeholder": "Search all"
}
},
"correlations": {
"add-new": "Add new",
"alert": {
"error-message": "An unknown error occurred while fetching correlation data. Please try again.",
"title": "Error fetching correlation data"
},
"basic-info-form": {
"description-description": "Optional description with more information about the link",
"description-label": "Description",
"label-description": "This name will be used as the label for the correlation. This will show as button text, a menu item, or hover text on a link.",
"label-label": "Label",
"label-placeholder": "e.g. Tempo traces",
"label-required": "This field is required.",
"sub-text": "<0>Define text that will describe the correlation.</0>",
"title": "Define correlation label (Step 1 of 3)"
},
"list": {
"delete": "delete correlation",
"label": "Label",
"loading": "loading...",
"read-only": "Read only",
"source": "Source",
"target": "Target"
},
"navigation-form": {
"add-button": "Add",
"back-button": "Back",
"next-button": "Next",
"save-button": "Save"
},
"page-content": "To enable Correlations, add it in the Grafana config:",
"page-heading": "Correlations are disabled",
"query-editor": {
"control-rules": "The selected target data source must export a query editor.",
"data-source-text": "Please select a target data source first.",
"data-source-title": "No data source selected",
"error-text": "The selected data source could not be loaded.",
"error-title": "Error loading data source",
"loading": "Loading query editor...",
"query-description": "Define the query that is run when the link is clicked. You can use <2>variables</2> to access specific field values.",
"query-editor-title": "Data source does not export a query editor.",
"query-label": "Query"
},
"source-form": {
"control-required": "This field is required.",
"description": "You have used following variables in the target query: <1></1><2></2>A data point needs to provide values to all variables as fields or as transformations output to make the correlation button appear in the visualization.<4></4>Note: Not every variable needs to be explicitly defined below. A transformation such as <7>logfmt</7> will create variables for every key/value pair.",
"heading": "Variables used in the target query",
"results-description": "The link will be shown next to the value of this field",
"results-label": "Results field",
"results-required": "This field is required.",
"source-description": "Results from selected source data source have links displayed in the panel",
"source-label": "Source",
"sub-text": "<0>Define what data source will display the correlation, and what data will replace previously defined variables.</0>",
"title": "Configure the data source that will link to {{dataSourceName}} (Step 3 of 3)"
},
"sub-title": "Define how data living in different data sources relates to each other. Read more in the <2>documentation<1></1></2>",
"target-form": {
"control-rules": "This field is required.",
"sub-text": "<0>Define what data source the correlation will link to, and what query will run when the correlation is clicked.</0>",
"target-description": "Specify which data source is queried when the link is clicked",
"target-label": "Target",
"title": "Setup the target for the correlation (Step 2 of 3)"
},
"trans-details": {
"logfmt-description": "Parse provided field with logfmt to get variables",
"logfmt-label": "Logfmt",
"regex-description": "Field will be parsed with regex. Use named capture groups to return multiple variables, or a single unnamed capture group to add variable to named map value. Regex is case insensitive.",
"regex-expression": "Use capture groups to extract a portion of the field.",
"regex-label": "Regular expression",
"regex-map-values": "Defines the name of the variable if the capture group is not named."
},
"transform": {
"add-button": "Add transformation",
"heading": "Transformations",
"no-transform": "No transformations defined."
},
"transform-row": {
"expression-label": "Expression",
"expression-required": "Please define an expression",
"expression-tooltip": "Required for regular expression. The expression the transformation will use. Logfmt does not use further specifications.",
"field-input": "field",
"field-label": "Field",
"field-tooltip": "Optional. The field to transform. If not specified, the transformation will be applied to the results field.",
"map-value-label": "Map value",
"map-value-tooltip": "Optional. Defines the name of the variable. This is currently only valid for regular expressions with a single, unnamed capture group.",
"remove-button": "Remove",
"remove-tooltip": "Remove transformation",
"transform-required": "Please select a transformation type",
"type-label": "Type",
"type-tooltip": "The type of transformation that will be applied to the source data."
}
},
"dashboard": {
"add-menu": {
"import": "Import from library",
"paste-panel": "Paste panel",
"row": "Row",
"visualization": "Visualization",
"widget": "Widget"
},
"alert-rules-drawer": {
"redirect-link": "List in Grafana Alerting",
"subtitle": "Alert rules related to this dashboard"
},
"empty": {
"add-library-panel-body": "Add visualizations that are shared with other dashboards.",
"add-library-panel-button": "Add library panel",
"add-library-panel-header": "Add a library panel",
"add-visualization-body": "Select a data source and then query and visualize your data with charts, stats and tables or create lists, markdowns and other widgets.",
"add-visualization-button": "Add visualization",
"add-visualization-header": "Start your new dashboard by adding a visualization",
"add-widget-body": "Create lists, markdowns and other widgets",
"add-widget-button": "Add widget",
"add-widget-header": "Add a widget",
"import-a-dashboard-body": "Import dashboard from file or <1>grafana.com</1>.",
"import-a-dashboard-header": "Import a dashboard",
"import-dashboard-button": "Import dashboard"
},
"inspect": {
"data-tab": "Data",
"error-tab": "Error",
"json-tab": "JSON",
"meta-tab": "Meta data",
"query-tab": "Query",
"stats-tab": "Stats",
"subtitle": "{{queryCount}} queries with total query time of {{formatted}}",
"title": "Inspect: {{panelTitle}}"
},
"inspect-data": {
"data-options": "Data options",
"dataframe-aria-label": "Select dataframe",
"dataframe-label": "Show data frame",
"download-csv": "Download CSV",
"download-excel-description": "Adds header to CSV for use with Excel",
"download-excel-label": "Download for Excel",
"download-logs": "Download logs",
"download-service": "Download service graph",
"download-traces": "Download traces",
"excel-header": "Excel header",
"formatted": "Formatted data",
"formatted-data-description": "Table data is formatted with options defined in the Field and Override tabs.",
"formatted-data-label": "Formatted data",
"panel-transforms": "Panel transforms",
"series-to-columns": "Series joined by time",
"transformation": "Series joined by time",
"transformations-description": "Table data is displayed with transformations defined in the panel Transform tab.",
"transformations-label": "Apply panel transformations"
},
"inspect-json": {
"dataframe-description": "Raw data without transformations and field config applied. ",
"dataframe-label": "DataFrame JSON (from Query)",
"panel-data-description": "The raw model passed to the panel visualization",
"panel-data-label": "Panel data",
"panel-json-description": "The model saved in the dashboard JSON that configures how everything works.",
"panel-json-label": "Panel JSON",
"select-source": "Select source",
"unknown": "Unknown Object: {{show}}"
},
"inspect-meta": {
"no-inspector": "No Metadata Inspector"
},
"inspect-stats": {
"data-title": "Data source stats",
"data-traceids": "Trace IDs",
"processing-time": "Data processing time",
"queries": "Number of queries",
"request-time": "Total request time",
"rows": "Total number rows",
"table-title": "Stats"
},
"toolbar": {
"add": "Add",
"alert-rules": "Alert rules",
"mark-favorite": "Mark as favorite",
"open-original": "Open original dashboard",
"playlist-next": "Go to next dashboard",
"playlist-previous": "Go to previous dashboard",
"playlist-stop": "Stop playlist",
"refresh": "Refresh dashboard",
"save": "Save dashboard",
"settings": "Dashboard settings",
"share": "Share dashboard",
"share-button": "Share",
"unmark-favorite": "Unmark as favorite"
},
"validation": {
"invalid-dashboard-id": "Could not find a valid Grafana.com ID",
"invalid-json": "Not valid JSON",
"tags-expected-array": "tags expected array",
"tags-expected-strings": "tags expected array of strings"
}
},
"dashboard-import": {
"file-dropzone": {
"primary-text": "Upload dashboard JSON file",
"secondary-text": "Drag and drop here or click to browse"
},
"form-actions": {
"cancel": "Cancel",
"load": "Load"
},
"gcom-field": {
"label": "Find and import dashboards for common applications at <1></1>",
"load-button": "Load",
"placeholder": "Grafana.com dashboard URL or ID",
"validation-required": "A Grafana dashboard URL or ID is required"
},
"json-field": {
"label": "Import via dashboard JSON model",
"validation-required": "Need a dashboard JSON model"
}
},
"dashboard-settings": {
"annotations": {
"title": "Annotations"
},
"dashboard-delete-button": "Delete Dashboard",
"general": {
"auto-refresh-description": "Define the auto refresh intervals that should be available in the auto refresh list.",
"auto-refresh-label": "Auto refresh",
"description-label": "Description",
"editable-description": "Set to read-only to disable all editing. Reload the dashboard for changes to take effect",
"editable-label": "Editable",
"folder-label": "Folder",
"panel-options-graph-tooltip-description": "Controls tooltip and hover highlight behavior across different panels. Reload the dashboard for changes to take effect",
"panel-options-graph-tooltip-label": "Graph tooltip",
"panel-options-label": "Panel options",
"tags-label": "Tags",
"title": "General",
"title-label": "Title"
},
"json-editor": {
"save-button": "Save changes",
"subtitle": "The JSON model below is the data structure that defines the dashboard. This includes dashboard settings, panel settings, layout, queries, and so on.",
"title": "JSON Model"
},
"links": {
"title": "Links"
},
"permissions": {
"title": "Permissions"
},
"settings": {
"title": "Settings"
},
"time-picker": {
"hide-time-picker": "Hide time picker",
"now-delay-description": "Exclude recent data that may be incomplete.",
"now-delay-label": "Now delay",
"refresh-live-dashboards-description": "Continuously re-draw panels where the time range references 'now'",
"refresh-live-dashboards-label": "Refresh live dashboards",
"time-options-label": "Time options",
"time-zone-label": "Time zone",
"week-start-label": "Week start"
},
"variables": {
"title": "Variables"
},
"versions": {
"title": "Versions"
}
},
"data-source-picker": {
"add-new-data-source": "Configure a new data source",
"built-in-list": {
"description-dashboard": "Reuse query results from other visualizations",
"description-grafana": "Discover visualizations using mock data",
"description-mixed": "Use multiple data sources"
},
"list": {
"no-data-source-message": "No data sources found"
},
"modal": {
"configure-new-data-source": "Open a new tab and configure a data source",
"input-placeholder": "Select data source",
"title": "Select data source"
},
"open-advanced-button": "Open advanced data source picker"
},
"data-sources": {
"datasource-add-button": {
"label": "Add new data source"
},
"empty-state": {
"message": "No data sources found"
}
},
"explore": {
"add-to-dashboard": "Add to dashboard",
"rich-history": {
"close-tooltip": "Close query history",
"datasource-a-z": "Data source A-Z",
"datasource-z-a": "Data source Z-A",
"newest-first": "Newest first",
"oldest-first": "Oldest first",
"query-history": "Query history",
"settings": "Settings",
"starred": "Starred"
},
"rich-history-card": {
"add-comment-form": "Add comment form",
"add-comment-tooltip": "Add comment",
"cancel": "Cancel",
"confirm-delete": "Delete",
"copy-query-tooltip": "Copy query to clipboard",
"copy-shortened-link-tooltip": "Copy shortened link to clipboard",
"datasource-icon-label": "Data source icon",
"datasource-name-label": "Data source name",
"datasource-not-exist": "Data source does not exist anymore",
"delete-query-confirmation-title": "Delete",
"delete-query-title": "Delete query",
"delete-query-tooltip": "Delete query",
"delete-starred-query-confirmation-text": "Are you sure you want to permanently delete your starred query?",
"edit-comment-tooltip": "Edit comment",
"loading-text": "loading...",
"optional-description": "An optional description of what the query does.",
"query-comment-label": "Query comment",
"query-text-label": "Query text",
"run-query-button": "Run query",
"save-comment": "Save comment",
"star-query-tooltip": "Star query",
"switch-datasource-button": "Switch data source and run query",
"unstar-query-tooltip": "Unstar query",
"update-comment-form": "Update comment form"
},
"rich-history-container": {
"loading": "Loading..."
},
"rich-history-notification": {
"query-copied": "Query copied to clipboard",
"query-deleted": "Query deleted"
},
"rich-history-queries-tab": {
"displaying-partial-queries": "Displaying {{ count }} queries",
"displaying-queries": "{{ count }} queries",
"filter-aria-label": "Filter queries for data sources(s)",
"filter-history": "Filter history",
"filter-placeholder": "Filter queries for data sources(s)",
"history-local": "The history is local to your browser and is not shared with others.",
"loading": "Loading...",
"loading-results": "Loading results...",
"search-placeholder": "Search queries",
"showing-queries": "Showing {{ shown }} of {{ total }} <0>Load more</0>",
"sort-aria-label": "Sort queries",
"sort-placeholder": "Sort queries by"
},
"rich-history-settings-tab": {
"alert-info": "Grafana will keep entries up to {{optionLabel}}.Starred entries won't be deleted.",
"change-default-tab": "Change the default active tab from “Query history” to “Starred”",
"clear-history-info": "Delete all of your query history, permanently.",
"clear-query-history": "Clear query history",
"clear-query-history-button": "Clear query history",
"delete-confirm": "Delete",
"delete-confirm-text": "Are you sure you want to permanently delete your query history?",
"delete-title": "Delete",
"history-time-span": "History time span",
"history-time-span-description": "Select the period of time for which Grafana will save your query history. Up to {{MAX_HISTORY_ITEMS}} entries will be stored.",
"only-show-active-datasource": "Only show queries for data source currently active in Explore",
"query-history-deleted": "Query history deleted",
"retention-period": {
"1-week": "1 week",
"2-days": "2 days",
"2-weeks": "2 weeks",
"5-days": "5 days"
}
},
"rich-history-starred-tab": {
"filter-queries-aria-label": "Filter queries for data sources(s)",
"filter-queries-placeholder": "Filter queries for data sources(s)",
"loading": "Loading...",
"loading-results": "Loading results...",
"local-history-message": "The history is local to your browser and is not shared with others.",
"search-queries-placeholder": "Search queries",
"showing-queries": "Showing {{ shown }} of {{ total }} <0>Load more</0>",
"sort-queries-aria-label": "Sort queries",
"sort-queries-placeholder": "Sort queries by"
},
"rich-history-utils": {
"a-week-ago": "a week ago",
"days-ago": "{{num}} days ago",
"default-from": "now-1h",
"default-to": "now",
"today": "today",
"two-weeks-ago": "two weeks ago",
"yesterday": "yesterday"
},
"rich-history-utils-notification": {
"saving-failed": "Saving rich history failed",
"update-failed": "Rich History update failed"
},
"secondary-actions": {
"query-add-button": "Add query",
"query-add-button-aria-label": "Add query",
"query-history-button": "Query history",
"query-history-button-aria-label": "Query history",
"query-inspector-button": "Query inspector",
"query-inspector-button-aria-label": "Query inspector"
},
"table": {
"no-data": "0 series returned",
"title": "Table",
"title-with-name": "Table - {{name}}"
},
"toolbar": {
"aria-label": "Explore toolbar",
"copy-link": "Copy URL",
"copy-link-abs-time": "Copy absolute URL",
"copy-links-absolute-category": "Time-sync URL links (share with time range intact)",
"copy-links-normal-category": "Normal URL links",
"copy-shortened-link": "Copy shortened URL",
"copy-shortened-link-abs-time": "Copy absolute shortened URL",
"copy-shortened-link-menu": "Open shortened link menu",
"refresh-picker-cancel": "Cancel",
"refresh-picker-run": "Run query",
"split-close": "Close",
"split-close-tooltip": "Close split pane",
"split-narrow": "Narrow pane",
"split-title": "Split",
"split-tooltip": "Split the pane",
"split-widen": "Widen pane"
}
},
"folder-picker": {
"loading": "Loading folders..."
},
"grafana-ui": {
"drawer": {
"close": "Close"
},
"modal": {
"close-tooltip": "Close"
},
"segment-async": {
"error": "Failed to load options",
"loading": "Loading options...",
"no-options": "No options found"
},
"select": {
"no-options-label": "No options found",
"placeholder": "Choose"
}
},
"graph": {
"container": {
"content": "Rendering too many series in a single panel may impact performance and make data harder to read. Consider refining your queries.",
"show-all-series": "Show all {{length}}",
"show-only-series": "Showing only {{MAX_NUMBER_OF_TIME_SERIES}} series",
"title": "Graph"
}
},
"help-modal": {
"shortcuts-category": {
"dashboard": "Dashboard",
"focused-panel": "Focused Panel",
"global": "Global",
"time-range": "Time Range"
},
"shortcuts-description": {
"change-theme": "Change theme",
"collapse-all-rows": "Collapse all rows",
"copy-time-range": "Copy time range",
"dashboard-settings": "Dashboard settings",
"duplicate-panel": "Duplicate Panel",
"exit-edit/setting-views": "Exit edit/setting views",
"expand-all-rows": "Expand all rows",
"go-to-dashboards": "Go to Dashboards",
"go-to-explore": "Go to Explore",
"go-to-home-dashboard": "Go to Home Dashboard",
"go-to-profile": "Go to Profile",
"make-time-range-permanent": "Make time range absolute/permanent",
"move-time-range-back": "Move time range back",
"move-time-range-forward": "Move time range forward",
"open-search": "Open search",
"open-shared-modal": "Open Panel Share Modal",
"paste-time-range": "Paste time range",
"refresh-all-panels": "Refresh all panels",
"remove-panel": "Remove Panel",
"save-dashboard": "Save dashboard",
"show-all-shortcuts": "Show all keyboard shortcuts",
"toggle-active-mode": "Toggle in-active / view mode",
"toggle-all-panel-legends": "Toggle all panel legends",
"toggle-auto-fit": "Toggle auto fit panels (experimental feature)",
"toggle-exemplars": "Toggle exemplars in all panel",
"toggle-graph-crosshair": "Toggle shared graph crosshair",
"toggle-kiosk": "Toggle kiosk mode (hides top nav)",
"toggle-panel-edit": "Toggle panel edit view",
"toggle-panel-fullscreen": "Toggle panel fullscreen view",
"toggle-panel-legend": "Toggle panel legend",
"zoom-out-time-range": "Zoom out time range"
},
"title": "Shortcuts"
},
"inspector": {
"query": {
"collapse-all": "Collapse all",
"copy-to-clipboard": "Copy to clipboard",
"description": "Query inspector allows you to view raw request and response. To collect this data Grafana needs to issue a new query. Click refresh button below to trigger a new query.",
"expand-all": "Expand all",
"no-data": "No request and response collected yet. Hit refresh button",
"refresh": "Refresh"
}
},
"library-panel": {
"add-modal": {
"cancel": "Cancel",
"create": "Create library panel",
"error": "Library panel with this name already exists",
"folder": "Save in folder",
"folder-description": "Library panel permissions are derived from the folder permissions",
"name": "Library panel name"
},
"add-widget": {
"title": "Add panel from panel library"
}
},
"library-panels": {
"empty-state": {
"message": "No library panels found"
},
"modal": {
"body_one": "This panel is being used in {{count}} dashboard. Please choose which dashboard to view the panel in:",
"body_other": "This panel is being used in {{count}} dashboards. Please choose which dashboard to view the panel in:",
"button-cancel": "<0>Cancel</0>",
"button-view-panel1": "View panel in {{label}}...",
"button-view-panel2": "View panel in dashboard...",
"panel-not-linked": "Panel is not linked to a dashboard. Add the panel to a dashboard and retry.",
"select-no-options-message": "No dashboards found",
"select-placeholder": "Start typing to search for dashboard",
"title": "View panel in dashboard"
},
"save": {
"error": "Error saving library panel: \"{{errorMsg}}\"",
"success": "Library panel saved"
}
},
"login": {
"error": {
"blocked": "You have exceeded the number of login attempts for this user. Please try again later.",
"invalid-user-or-password": "Invalid username or password",
"title": "Login failed",
"unknown": "Unknown error occurred"
},
"forgot-password": "Forgot your password?",
"form": {
"password-label": "Password",
"password-required": "Password is required",
"submit-label": "Log in",
"submit-loading-label": "Logging in...",
"username-label": "Email or username",
"username-required": "Email or username is required"
},
"services": {
"sing-in-with-prefix": "Sign in with {{serviceName}}"
},
"signup": {
"button-label": "Sign up",
"new-to-question": "New to Grafana?"
}
},
"migrate-to-cloud": {
"can-i-move": {
"body": "Once you connect this installation to a cloud stack, you'll be able to upload data sources and dashboards.",
"link-title": "Learn about migrating other settings",
"title": "Can I move this installation to Grafana Cloud?"
},
"connect-modal": {
"body-cloud-stack": "You'll also need a cloud stack. If you just signed up, we'll automatically create your first stack. If you have an account, you'll need to select or create a stack.",
"body-get-started": "To get started, you'll need a Grafana.com account.",
"body-paste-stack": "Once you've decided on a stack, paste the URL below.",
"body-sign-up": "Sign up for a Grafana.com account",
"body-token": "Your self-managed Grafana installation needs special access to securely migrate content. You'll need to create a migration token on your chosen cloud stack.",
"body-token-field": "Migration token",
"body-token-field-placeholder": "Paste token here",
"body-token-instructions": "Log into your cloud stack and navigate to Administration, General, Migrate to Grafana Cloud. Create a migration token on that screen and paste the token here.",
"body-url-field": "Cloud stack URL",
"body-view-stacks": "View my cloud stacks",
"cancel": "Cancel",
"connect": "Connect to this stack",
"connecting": "Connecting to this stack...",
"stack-required-error": "Stack URL is required",
"title": "Connect to a cloud stack",
"token-error-description": "There was an error saving the token. See the Grafana server logs for more details.",
"token-error-title": "Error saving token",
"token-required-error": "Migration token is required"
},
"cta": {
"button": "Migrate this instance to Cloud",
"header": "Let us manage your Grafana stack"
},
"disconnect-modal": {
"body": "This will remove the migration token from this installation. If you wish to upload more resources in the future, you will need to enter a new migration token.",
"cancel": "Cancel",
"disconnect": "Disconnect",
"disconnecting": "Disconnecting...",
"error": "There was an error disconnecting",
"title": "Disconnect from cloud stack"
},
"get-started": {
"body": "The migration process must be started from your self-managed Grafana instance.",
"configure-pdc-link": "Configure PDC for this stack",
"link-title": "Learn more about Private Data Source Connect",
"step-1": "Log in to your self-managed instance and navigate to Administration, General, Migrate to Grafana Cloud.",
"step-2": "Select \"Migrate this instance to Cloud\".",
"step-3": "You'll be prompted for a migration token. Generate one from this screen.",
"step-4": "In your self-managed instance, select \"Upload everything\" to upload data sources and dashboards to this cloud stack.",
"step-5": "If some of your data sources will not work over the public internet, you’ll need to install Private Data Source Connect in your self-managed environment.",
"title": "How to get started"
},
"is-it-secure": {
"body": "Grafana Labs is committed to maintaining the highest standards of data privacy and security. By implementing industry-standard security technologies and procedures, we help protect our customers' data from unauthorized access, use, or disclosure.",
"link-title": "Grafana Labs Trust Center",
"title": "Is it secure?"
},
"migrate-to-this-stack": {
"body": "Some configuration from your self-managed Grafana instance can be automatically copied to this cloud stack.",
"link-title": "View the full migration guide",
"title": "Migrate configuration to this stack"
},
"migration-token": {
"body": "Your self-managed Grafana instance will require a special authentication token to securely connect to this cloud stack.",
"delete-button": "Delete this migration token",
"delete-modal-body": "If you've already used this token with a self-managed installation, that installation will no longer be able to upload content.",
"delete-modal-cancel": "Cancel",
"delete-modal-confirm": "Delete",
"delete-modal-deleting": "Deleting...",
"delete-modal-title": "Delete migration token",
"generate-button": "Generate a migration token",
"generate-button-loading": "Generating a migration token...",
"modal-close": "Close",
"modal-copy-and-close": "Copy to clipboard and close",
"modal-copy-button": "Copy to clipboard",
"modal-field-description": "Copy the token now as you will not be able to see it again. Losing a token requires creating a new one.",
"modal-field-label": "Token",
"modal-title": "Migration token created",
"status": "Current status: <2></2>",
"title": "Migration token"
},
"pdc": {
"body": "Exposing your data sources to the internet can raise security concerns. Private data source connect (PDC) allows Grafana Cloud to access your existing data sources over a secure network tunnel.",
"link-title": "Learn about PDC",
"title": "Not all my data sources are on the public internet"
},
"pricing": {
"body": "Grafana Cloud has a generous free plan and a 14 day unlimited usage trial. After your trial expires, you'll be billed based on usage over the free plan limits.",
"link-title": "Grafana Cloud pricing",
"title": "How much does it cost?"
},
"resource-status": {
"error-details-button": "Details",
"failed": "Error",
"migrated": "Uploaded to cloud",
"migrating": "Uploading...",
"not-migrated": "Not yet uploaded",
"unknown": "Unknown"
},
"resource-type": {
"dashboard": "Dashboard",
"datasource": "Data source",
"unknown": "Unknown"
},
"summary": {
"disconnect": "Disconnect",
"error-starting-migration": "There was an error starting cloud migration",
"start-migration": "Upload everything",
"target-stack-title": "Uploading to"
},
"token-status": {
"active": "Token created and active",
"no-active": "No active token"
},
"what-is-cloud": {
"body": "Grafana cloud is a fully managed cloud-hosted observability platform ideal for cloud native environments. It's everything you love about Grafana without the overhead of maintaining, upgrading, and supporting an installation.",
"link-title": "Learn about cloud features",
"title": "What is Grafana Cloud?"
},
"why-host": {
"body": "In addition to the convenience of managed hosting, Grafana Cloud includes many cloud-exclusive features like SLOs, incident management, machine learning, and powerful observability integrations.",
"link-title": "More questions? Talk to an expert",
"title": "Why host with Grafana?"
}
},
"nav": {
"add-new-connections": {
"title": "Add new connection"
},
"admin": {
"subtitle": "Manage server-wide settings and access to resources such as organizations, users, and licenses",
"title": "Server admin"
},
"alert-list-legacy": {
"title": "Alert rules"
},
"alerting": {
"subtitle": "Learn about problems in your systems moments after they occur",
"title": "Alerting"
},
"alerting-admin": {
"title": "Admin"
},
"alerting-am-routes": {
"subtitle": "Determine how alerts are routed to contact points",
"title": "Notification policies"
},
"alerting-channels": {
"title": "Notification channels"
},
"alerting-groups": {
"subtitle": "See grouped alerts from an Alertmanager instance",
"title": "Groups"
},
"alerting-home": {
"title": "Home"
},
"alerting-legacy": {
"title": "Alerting (legacy)"
},
"alerting-list": {
"subtitle": "Rules that determine whether an alert will fire",
"title": "Alert rules"
},
"alerting-receivers": {
"subtitle": "Choose how to notify your contact points when an alert instance fires",
"title": "Contact points"
},
"alerting-silences": {
"subtitle": "Stop notifications from one or more alerting rules",
"title": "Silences"
},
"alerting-upgrade": {
"subtitle": "Upgrade your existing legacy alerts and notification channels to the new Grafana Alerting",
"title": "Alerting upgrade"
},
"alerts-and-incidents": {
"subtitle": "Alerting and incident management apps",
"title": "Alerts & IRM"
},
"api-keys": {
"subtitle": "Manage and create API keys that are used to interact with Grafana HTTP APIs",
"title": "API keys"
},
"application": {
"title": "Application"
},
"apps": {
"subtitle": "App plugins that extend the Grafana experience",
"title": "Apps"
},
"authentication": {
"title": "Authentication"
},
"collector": {
"title": "Collector"
},
"config": {
"title": "Administration"
},
"config-access": {
"subtitle": "Configure access for individual users, teams, and service accounts",
"title": "Users and access"
},
"config-general": {
"subtitle": "Manage default preferences and settings across Grafana",
"title": "General"
},
"config-plugins": {
"subtitle": "Install plugins and define the relationships between data",
"title": "Plugins and data"
},
"connect-data": {
"title": "Connect data"
},
"connections": {
"subtitle": "Browse and create new connections",
"title": "Connections"
},
"correlations": {
"subtitle": "Add and configure correlations",
"title": "Correlations"
},
"create": {
"title": "Create"
},
"create-alert": {
"title": "Create alert rule"
},
"create-dashboard": {
"title": "Dashboard"
},
"create-folder": {
"title": "Folder"
},
"create-import": {
"title": "Import dashboard"
},
"dashboards": {
"subtitle": "Create and manage dashboards to visualize your data",
"title": "Dashboards"
},
"data-sources": {
"subtitle": "View and manage your connected data source connections",
"title": "Data sources"
},
"datasources": {
"subtitle": "Add and configure data sources",
"title": "Data sources"
},
"detect": {
"title": "Detect"
},
"explore": {
"title": "Explore"
},
"frontend": {
"subtitle": "Gain real user monitoring insights",
"title": "Frontend"
},
"frontend-app": {
"title": "Frontend"
},
"global-orgs": {
"subtitle": "Isolated instances of Grafana running on the same server",
"title": "Organizations"
},
"global-users": {
"subtitle": "Manage users in Grafana",
"title": "Users"
},
"grafana-quaderno": {
"title": "Grafana Quaderno"
},
"help": {
"title": "Help"
},
"help/community": "Community",
"help/documentation": "Documentation",
"help/keyboard-shortcuts": "Keyboard shortcuts",
"help/support": "Support",
"home": {
"title": "Home"
},
"incidents": {
"title": "Incidents"
},
"infrastructure": {
"subtitle": "Understand your infrastructure's health",
"title": "Infrastructure"
},
"integrations": {
"title": "Integrations"
},
"k6": {
"title": "Performance"
},
"kubernetes": {
"title": "Kubernetes"